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