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