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,37 +1,18 @@
#pragma once
#define dgTimeWarpSkel "__OTR__objects/object_efc_tw/gTimeWarpSkel"
#ifdef _WIN32
static const __declspec(align(2)) char gTimeWarpSkel[] = dgTimeWarpSkel;
#else
static const char gTimeWarpSkel[] __attribute__((aligned (2))) = dgTimeWarpSkel;
#endif
#define dgTimeWarpAnim "__OTR__objects/object_efc_tw/gTimeWarpAnim"
#ifdef _WIN32
static const __declspec(align(2)) char gTimeWarpAnim[] = dgTimeWarpAnim;
#else
static const char gTimeWarpAnim[] __attribute__((aligned (2))) = dgTimeWarpAnim;
#endif
#define dgTimeWarpVtx "__OTR__objects/object_efc_tw/gTimeWarpVtx"
#ifdef _WIN32
static const __declspec(align(2)) char gTimeWarpVtx[] = dgTimeWarpVtx;
#else
static const char gTimeWarpVtx[] __attribute__((aligned (2))) = dgTimeWarpVtx;
#endif
#define dgTimeWarpDL "__OTR__objects/object_efc_tw/gTimeWarpDL"
#ifdef _WIN32
static const __declspec(align(2)) char gTimeWarpDL[] = dgTimeWarpDL;
#else
static const char gTimeWarpDL[] __attribute__((aligned (2))) = dgTimeWarpDL;
#endif
#define dgTimeWarpTex "__OTR__objects/object_efc_tw/gTimeWarpTex"
#ifdef _WIN32
static const __declspec(align(2)) char gTimeWarpTex[] = dgTimeWarpTex;
#else
static const char gTimeWarpTex[] __attribute__((aligned (2))) = dgTimeWarpTex;
#endif
#include "align_asset_macro.h"
#define dgTimeWarpSkel "__OTR__objects/object_efc_tw/gTimeWarpSkel"
static const ALIGN_ASSET(2) char gTimeWarpSkel[] = dgTimeWarpSkel;
#define dgTimeWarpAnim "__OTR__objects/object_efc_tw/gTimeWarpAnim"
static const ALIGN_ASSET(2) char gTimeWarpAnim[] = dgTimeWarpAnim;
#define dgTimeWarpVtx "__OTR__objects/object_efc_tw/gTimeWarpVtx"
static const ALIGN_ASSET(2) char gTimeWarpVtx[] = dgTimeWarpVtx;
#define dgTimeWarpDL "__OTR__objects/object_efc_tw/gTimeWarpDL"
static const ALIGN_ASSET(2) char gTimeWarpDL[] = dgTimeWarpDL;
#define dgTimeWarpTex "__OTR__objects/object_efc_tw/gTimeWarpTex"
static const ALIGN_ASSET(2) char gTimeWarpTex[] = dgTimeWarpTex;