Shipwright/soh/assets/textures/backgrounds/vr_MDVR_static.h

31 lines
1.1 KiB
C
Raw Normal View History

2023-02-14 08:29:46 -05:00
#pragma once
#define dgMarketDayBgTex "__OTR__textures/vr_MDVR_static/gMarketDayBgTex"
#ifdef _WIN32
static const __declspec(align(2)) char gMarketDayBgTex[] = dgMarketDayBgTex;
#else
static const char gMarketDayBgTex[] __attribute__((aligned (2))) = dgMarketDayBgTex;
#endif
#define dgMarketDay2BgTex "__OTR__textures/vr_MDVR_static/gMarketDay2BgTex"
#ifdef _WIN32
static const __declspec(align(2)) char gMarketDay2BgTex[] = dgMarketDay2BgTex;
#else
static const char gMarketDay2BgTex[] __attribute__((aligned (2))) = dgMarketDay2BgTex;
#endif
#define dgMarketDay3BgTex "__OTR__textures/vr_MDVR_static/gMarketDay3BgTex"
#ifdef _WIN32
static const __declspec(align(2)) char gMarketDay3BgTex[] = dgMarketDay3BgTex;
#else
static const char gMarketDay3BgTex[] __attribute__((aligned (2))) = dgMarketDay3BgTex;
#endif
#define dgMarketDay4BgTex "__OTR__textures/vr_MDVR_static/gMarketDay4BgTex"
#ifdef _WIN32
static const __declspec(align(2)) char gMarketDay4BgTex[] = dgMarketDay4BgTex;
#else
static const char gMarketDay4BgTex[] __attribute__((aligned (2))) = dgMarketDay4BgTex;
#endif