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,51 @@
#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