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 dgGiGoronCollarColorDL "__OTR__objects/object_gi_clothes/gGiGoronCollarColorDL"
#ifdef _WIN32
static const __declspec(align(2)) char gGiGoronCollarColorDL[] = dgGiGoronCollarColorDL;
#else
static const char gGiGoronCollarColorDL[] __attribute__((aligned (2))) = dgGiGoronCollarColorDL;
#endif
#define dgGiZoraCollarColorDL "__OTR__objects/object_gi_clothes/gGiZoraCollarColorDL"
#ifdef _WIN32
static const __declspec(align(2)) char gGiZoraCollarColorDL[] = dgGiZoraCollarColorDL;
#else
static const char gGiZoraCollarColorDL[] __attribute__((aligned (2))) = dgGiZoraCollarColorDL;
#endif
#define dgGiGoronTunicColorDL "__OTR__objects/object_gi_clothes/gGiGoronTunicColorDL"
#ifdef _WIN32
static const __declspec(align(2)) char gGiGoronTunicColorDL[] = dgGiGoronTunicColorDL;
#else
static const char gGiGoronTunicColorDL[] __attribute__((aligned (2))) = dgGiGoronTunicColorDL;
#endif
#define dgGiZoraTunicColorDL "__OTR__objects/object_gi_clothes/gGiZoraTunicColorDL"
#ifdef _WIN32
static const __declspec(align(2)) char gGiZoraTunicColorDL[] = dgGiZoraTunicColorDL;
#else
static const char gGiZoraTunicColorDL[] __attribute__((aligned (2))) = dgGiZoraTunicColorDL;
#endif
#define dgGiTunicCollarDL "__OTR__objects/object_gi_clothes/gGiTunicCollarDL"
#ifdef _WIN32
static const __declspec(align(2)) char gGiTunicCollarDL[] = dgGiTunicCollarDL;
#else
static const char gGiTunicCollarDL[] __attribute__((aligned (2))) = dgGiTunicCollarDL;
#endif
#define dgGiTunicDL "__OTR__objects/object_gi_clothes/gGiTunicDL"
#ifdef _WIN32
static const __declspec(align(2)) char gGiTunicDL[] = dgGiTunicDL;
#else
static const char gGiTunicDL[] __attribute__((aligned (2))) = dgGiTunicDL;
#endif
#define dobject_gi_clothesTex_000000 "__OTR__objects/object_gi_clothes/object_gi_clothesTex_000000"
#ifdef _WIN32
static const __declspec(align(2)) char object_gi_clothesTex_000000[] = dobject_gi_clothesTex_000000;
#else
static const char object_gi_clothesTex_000000[] __attribute__((aligned (2))) = dobject_gi_clothesTex_000000;
#endif