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 dgStableBgTex "__OTR__textures/vr_MLVR_static/gStableBgTex"
#ifdef _WIN32
static const __declspec(align(2)) char gStableBgTex[] = dgStableBgTex;
#else
static const char gStableBgTex[] __attribute__((aligned (2))) = dgStableBgTex;
#endif
#define dgStable2BgTex "__OTR__textures/vr_MLVR_static/gStable2BgTex"
#ifdef _WIN32
static const __declspec(align(2)) char gStable2BgTex[] = dgStable2BgTex;
#else
static const char gStable2BgTex[] __attribute__((aligned (2))) = dgStable2BgTex;
#endif
#define dgStable3BgTex "__OTR__textures/vr_MLVR_static/gStable3BgTex"
#ifdef _WIN32
static const __declspec(align(2)) char gStable3BgTex[] = dgStable3BgTex;
#else
static const char gStable3BgTex[] __attribute__((aligned (2))) = dgStable3BgTex;
#endif
#define dgStable4BgTex "__OTR__textures/vr_MLVR_static/gStable4BgTex"
#ifdef _WIN32
static const __declspec(align(2)) char gStable4BgTex[] = dgStable4BgTex;
#else
static const char gStable4BgTex[] __attribute__((aligned (2))) = dgStable4BgTex;
#endif