mirror of
https://github.com/izzy2lost/Ghostship.git
synced 2026-03-10 11:52:18 -07:00
12 lines
368 B
C
12 lines
368 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
#include "align_asset_macro.h"
|
||
|
|
|
||
|
|
#define dgDialogRoot "texts/dialogs/dialog_%02X"
|
||
|
|
static const ALIGN_ASSET(2) char gDialogRoot[] = dgDialogRoot;
|
||
|
|
|
||
|
|
#define dgCourseRoot "texts/courses/course_%02X"
|
||
|
|
static const ALIGN_ASSET(2) char gCourseRoot[] = dgCourseRoot;
|
||
|
|
|
||
|
|
#define dgActRoot "texts/acts/act_%02X"
|
||
|
|
static const ALIGN_ASSET(2) char gActRoot[] = dgActRoot;
|