Add asset headers (#2465)

This commit is contained in:
David Chavez
2023-02-14 14:29:46 +01:00
committed by GitHub
parent 8c87bc13db
commit 66b2d2d5fa
1637 changed files with 142018 additions and 61 deletions

View File

@@ -0,0 +1,44 @@
#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