Files
Shiip-of-Hakinian-Espanol/soh/assets/objects/object_gi_hookshot/object_gi_hookshot.h
2023-02-14 08:29:46 -05:00

17 lines
548 B
C

#pragma once
#define dgGiHookshotDL "__OTR__objects/object_gi_hookshot/gGiHookshotDL"
#ifdef _WIN32
static const __declspec(align(2)) char gGiHookshotDL[] = dgGiHookshotDL;
#else
static const char gGiHookshotDL[] __attribute__((aligned (2))) = dgGiHookshotDL;
#endif
#define dgGiLongshotDL "__OTR__objects/object_gi_hookshot/gGiLongshotDL"
#ifdef _WIN32
static const __declspec(align(2)) char gGiLongshotDL[] = dgGiLongshotDL;
#else
static const char gGiLongshotDL[] __attribute__((aligned (2))) = dgGiLongshotDL;
#endif