Add asset headers (#2465)

This commit is contained in:
David Chavez
2023-02-14 14:29:46 +01:00
committed by GitHub
parent 8c87bc13db
commit 66b2d2d5fa
1637 changed files with 142018 additions and 61 deletions

View File

@@ -0,0 +1,58 @@
#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