mirror of
https://github.com/ACreTeam/ac-decomp
synced 2026-05-23 06:34:18 -04:00
27 lines
356 B
C
27 lines
356 B
C
#ifndef M_MASK_CAT_H
|
|
#define M_MASK_CAT_H
|
|
|
|
#include "types.h"
|
|
#include "m_needlework.h"
|
|
#include "m_time.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#define mMC_TALK_IDX_MAX 10
|
|
|
|
typedef struct mask_cat_s {
|
|
mNW_original_design_c design;
|
|
u8 palette_no;
|
|
u8 cloth_no;
|
|
u8 talk_idx;
|
|
lbRTC_time_c time;
|
|
} MaskCat_c;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|