mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2024-11-01 08:05:07 -04:00
52 lines
2.2 KiB
C
52 lines
2.2 KiB
C
|
#pragma once
|
||
|
#define dgBombFlowerLeafOutwardsTex "__OTR__objects/object_bombf/gBombFlowerLeafOutwardsTex"
|
||
|
#ifdef _WIN32
|
||
|
static const __declspec(align(2)) char gBombFlowerLeafOutwardsTex[] = dgBombFlowerLeafOutwardsTex;
|
||
|
#else
|
||
|
static const char gBombFlowerLeafOutwardsTex[] __attribute__((aligned (2))) = dgBombFlowerLeafOutwardsTex;
|
||
|
#endif
|
||
|
|
||
|
#define dgBombFlowerLeafUpwardsTex "__OTR__objects/object_bombf/gBombFlowerLeafUpwardsTex"
|
||
|
#ifdef _WIN32
|
||
|
static const __declspec(align(2)) char gBombFlowerLeafUpwardsTex[] = dgBombFlowerLeafUpwardsTex;
|
||
|
#else
|
||
|
static const char gBombFlowerLeafUpwardsTex[] __attribute__((aligned (2))) = dgBombFlowerLeafUpwardsTex;
|
||
|
#endif
|
||
|
|
||
|
#define dgBombFlowerBombTex "__OTR__objects/object_bombf/gBombFlowerBombTex"
|
||
|
#ifdef _WIN32
|
||
|
static const __declspec(align(2)) char gBombFlowerBombTex[] = dgBombFlowerBombTex;
|
||
|
#else
|
||
|
static const char gBombFlowerBombTex[] __attribute__((aligned (2))) = dgBombFlowerBombTex;
|
||
|
#endif
|
||
|
|
||
|
#define dgBombFlowerFuseTex "__OTR__objects/object_bombf/gBombFlowerFuseTex"
|
||
|
#ifdef _WIN32
|
||
|
static const __declspec(align(2)) char gBombFlowerFuseTex[] = dgBombFlowerFuseTex;
|
||
|
#else
|
||
|
static const char gBombFlowerFuseTex[] __attribute__((aligned (2))) = dgBombFlowerFuseTex;
|
||
|
#endif
|
||
|
|
||
|
#define dgBombFlowerLeavesDL "__OTR__objects/object_bombf/gBombFlowerLeavesDL"
|
||
|
#ifdef _WIN32
|
||
|
static const __declspec(align(2)) char gBombFlowerLeavesDL[] = dgBombFlowerLeavesDL;
|
||
|
#else
|
||
|
static const char gBombFlowerLeavesDL[] __attribute__((aligned (2))) = dgBombFlowerLeavesDL;
|
||
|
#endif
|
||
|
|
||
|
#define dgBombFlowerBombAndSparkDL "__OTR__objects/object_bombf/gBombFlowerBombAndSparkDL"
|
||
|
#ifdef _WIN32
|
||
|
static const __declspec(align(2)) char gBombFlowerBombAndSparkDL[] = dgBombFlowerBombAndSparkDL;
|
||
|
#else
|
||
|
static const char gBombFlowerBombAndSparkDL[] __attribute__((aligned (2))) = dgBombFlowerBombAndSparkDL;
|
||
|
#endif
|
||
|
|
||
|
#define dgBombFlowerBaseLeavesDL "__OTR__objects/object_bombf/gBombFlowerBaseLeavesDL"
|
||
|
#ifdef _WIN32
|
||
|
static const __declspec(align(2)) char gBombFlowerBaseLeavesDL[] = dgBombFlowerBaseLeavesDL;
|
||
|
#else
|
||
|
static const char gBombFlowerBaseLeavesDL[] __attribute__((aligned (2))) = dgBombFlowerBaseLeavesDL;
|
||
|
#endif
|
||
|
|
||
|
|