mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2024-11-01 08:05:07 -04:00
66 lines
2.1 KiB
C
66 lines
2.1 KiB
C
|
#pragma once
|
||
|
#define dgFireDL "__OTR__objects/object_fire/gFireDL"
|
||
|
#ifdef _WIN32
|
||
|
static const __declspec(align(2)) char gFireDL[] = dgFireDL;
|
||
|
#else
|
||
|
static const char gFireDL[] __attribute__((aligned (2))) = dgFireDL;
|
||
|
#endif
|
||
|
|
||
|
#define dgFire0Tex "__OTR__objects/object_fire/gFire0Tex"
|
||
|
#ifdef _WIN32
|
||
|
static const __declspec(align(2)) char gFire0Tex[] = dgFire0Tex;
|
||
|
#else
|
||
|
static const char gFire0Tex[] __attribute__((aligned (2))) = dgFire0Tex;
|
||
|
#endif
|
||
|
|
||
|
#define dgFire1Tex "__OTR__objects/object_fire/gFire1Tex"
|
||
|
#ifdef _WIN32
|
||
|
static const __declspec(align(2)) char gFire1Tex[] = dgFire1Tex;
|
||
|
#else
|
||
|
static const char gFire1Tex[] __attribute__((aligned (2))) = dgFire1Tex;
|
||
|
#endif
|
||
|
|
||
|
#define dgFire2Tex "__OTR__objects/object_fire/gFire2Tex"
|
||
|
#ifdef _WIN32
|
||
|
static const __declspec(align(2)) char gFire2Tex[] = dgFire2Tex;
|
||
|
#else
|
||
|
static const char gFire2Tex[] __attribute__((aligned (2))) = dgFire2Tex;
|
||
|
#endif
|
||
|
|
||
|
#define dgFire3Tex "__OTR__objects/object_fire/gFire3Tex"
|
||
|
#ifdef _WIN32
|
||
|
static const __declspec(align(2)) char gFire3Tex[] = dgFire3Tex;
|
||
|
#else
|
||
|
static const char gFire3Tex[] __attribute__((aligned (2))) = dgFire3Tex;
|
||
|
#endif
|
||
|
|
||
|
#define dgFire4Tex "__OTR__objects/object_fire/gFire4Tex"
|
||
|
#ifdef _WIN32
|
||
|
static const __declspec(align(2)) char gFire4Tex[] = dgFire4Tex;
|
||
|
#else
|
||
|
static const char gFire4Tex[] __attribute__((aligned (2))) = dgFire4Tex;
|
||
|
#endif
|
||
|
|
||
|
#define dgFire5Tex "__OTR__objects/object_fire/gFire5Tex"
|
||
|
#ifdef _WIN32
|
||
|
static const __declspec(align(2)) char gFire5Tex[] = dgFire5Tex;
|
||
|
#else
|
||
|
static const char gFire5Tex[] __attribute__((aligned (2))) = dgFire5Tex;
|
||
|
#endif
|
||
|
|
||
|
#define dgFire6Tex "__OTR__objects/object_fire/gFire6Tex"
|
||
|
#ifdef _WIN32
|
||
|
static const __declspec(align(2)) char gFire6Tex[] = dgFire6Tex;
|
||
|
#else
|
||
|
static const char gFire6Tex[] __attribute__((aligned (2))) = dgFire6Tex;
|
||
|
#endif
|
||
|
|
||
|
#define dgFire7Tex "__OTR__objects/object_fire/gFire7Tex"
|
||
|
#ifdef _WIN32
|
||
|
static const __declspec(align(2)) char gFire7Tex[] = dgFire7Tex;
|
||
|
#else
|
||
|
static const char gFire7Tex[] __attribute__((aligned (2))) = dgFire7Tex;
|
||
|
#endif
|
||
|
|
||
|
|