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,30 @@
#pragma once
#define dgStableBgTLUT "__OTR__textures/vr_MLVR_pal_static/gStableBgTLUT"
#ifdef _WIN32
static const __declspec(align(2)) char gStableBgTLUT[] = dgStableBgTLUT;
#else
static const char gStableBgTLUT[] __attribute__((aligned (2))) = dgStableBgTLUT;
#endif
#define dgStableBg2TLUT "__OTR__textures/vr_MLVR_pal_static/gStableBg2TLUT"
#ifdef _WIN32
static const __declspec(align(2)) char gStableBg2TLUT[] = dgStableBg2TLUT;
#else
static const char gStableBg2TLUT[] __attribute__((aligned (2))) = dgStableBg2TLUT;
#endif
#define dgStableBg3TLUT "__OTR__textures/vr_MLVR_pal_static/gStableBg3TLUT"
#ifdef _WIN32
static const __declspec(align(2)) char gStableBg3TLUT[] = dgStableBg3TLUT;
#else
static const char gStableBg3TLUT[] __attribute__((aligned (2))) = dgStableBg3TLUT;
#endif
#define dgStableBg4TLUT "__OTR__textures/vr_MLVR_pal_static/gStableBg4TLUT"
#ifdef _WIN32
static const __declspec(align(2)) char gStableBg4TLUT[] = dgStableBg4TLUT;
#else
static const char gStableBg4TLUT[] __attribute__((aligned (2))) = dgStableBg4TLUT;
#endif