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