Simplify Asset Headers (#2474)

This commit is contained in:
Amaro Martínez
2023-03-02 09:37:47 -05:00
committed by GitHub
parent 21466192e5
commit d3f864cea9
1075 changed files with 60897 additions and 139767 deletions

View File

@@ -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;