mirror of
https://github.com/encounter/ac-decomp.git
synced 2026-03-30 10:57:04 -07:00
28 lines
517 B
C
28 lines
517 B
C
#ifndef M_STRING_DATA_H
|
|
#define M_STRING_DATA_H
|
|
|
|
#include "types.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#define mString_AM 0x001
|
|
#define mString_PM 0x002
|
|
#define mString_WEEKDAY_START 0x009
|
|
#define mString_DAY_START 0x64E
|
|
#define mString_MONTH_START 0x66D
|
|
#define mString_SONCHO_EVENT_NAME_START 0x6F8
|
|
#define mString_ARTICLE_START 0x737
|
|
#define mString_HANIWA_MSG0 0x76A
|
|
#define mString_HANIWA_MSG1 0x76B
|
|
#define mString_HANIWA_MSG2 0x76C
|
|
#define mString_HANIWA_MSG3 0x76D
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|