17 lines
620 B
C
Raw Normal View History

2023-02-14 14:29:46 +01:00
#pragma once
#define dgKakPotionShopBgTex "__OTR__textures/vr_DGVR_static/gKakPotionShopBgTex"
#ifdef _WIN32
static const __declspec(align(2)) char gKakPotionShopBgTex[] = dgKakPotionShopBgTex;
#else
static const char gKakPotionShopBgTex[] __attribute__((aligned (2))) = dgKakPotionShopBgTex;
#endif
#define dgKakPotionShop2BgTex "__OTR__textures/vr_DGVR_static/gKakPotionShop2BgTex"
#ifdef _WIN32
static const __declspec(align(2)) char gKakPotionShop2BgTex[] = dgKakPotionShop2BgTex;
#else
static const char gKakPotionShop2BgTex[] __attribute__((aligned (2))) = dgKakPotionShop2BgTex;
#endif