mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2024-11-09 15:10:51 -08:00
34 lines
1.3 KiB
C
34 lines
1.3 KiB
C
#ifndef OBJECTS_OBJECT_PU_BOX_H
|
|
#define OBJECTS_OBJECT_PU_BOX_H 1
|
|
|
|
#include "align_asset_macro.h"
|
|
|
|
#define dgBlockSmallDL "__OTR__objects/object_pu_box/gBlockSmallDL"
|
|
static const ALIGN_ASSET(2) char gBlockSmallDL[] = dgBlockSmallDL;
|
|
|
|
#define dgBlockSmallCol "__OTR__objects/object_pu_box/gBlockSmallCol"
|
|
static const ALIGN_ASSET(2) char gBlockSmallCol[] = dgBlockSmallCol;
|
|
|
|
#define dgBlockMediumDL "__OTR__objects/object_pu_box/gBlockMediumDL"
|
|
static const ALIGN_ASSET(2) char gBlockMediumDL[] = dgBlockMediumDL;
|
|
|
|
#define dgBlockMediumCol "__OTR__objects/object_pu_box/gBlockMediumCol"
|
|
static const ALIGN_ASSET(2) char gBlockMediumCol[] = dgBlockMediumCol;
|
|
|
|
#define dgBlockTallDL "__OTR__objects/object_pu_box/gBlockTallDL"
|
|
static const ALIGN_ASSET(2) char gBlockTallDL[] = dgBlockTallDL;
|
|
|
|
#define dgBlockTallCol "__OTR__objects/object_pu_box/gBlockTallCol"
|
|
static const ALIGN_ASSET(2) char gBlockTallCol[] = dgBlockTallCol;
|
|
|
|
#define dgBlockTallestDL "__OTR__objects/object_pu_box/gBlockTallestDL"
|
|
static const ALIGN_ASSET(2) char gBlockTallestDL[] = dgBlockTallestDL;
|
|
|
|
#define dgBlockTallestCol "__OTR__objects/object_pu_box/gBlockTallestCol"
|
|
static const ALIGN_ASSET(2) char gBlockTallestCol[] = dgBlockTallestCol;
|
|
|
|
#define dgBlockTex "__OTR__objects/object_pu_box/gBlockTex"
|
|
static const ALIGN_ASSET(2) char gBlockTex[] = dgBlockTex;
|
|
|
|
#endif // OBJECTS_OBJECT_PU_BOX_H
|