mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2024-11-01 16:15:07 -04:00
17 lines
620 B
C
17 lines
620 B
C
|
#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
|
||
|
|
||
|
|