mirror of
https://github.com/ACreTeam/ac-decomp
synced 2026-05-31 17:01:39 -04:00
21 lines
317 B
C
21 lines
317 B
C
#ifndef M_ITEM_NAME_H
|
|
#define M_ITEM_NAME_H
|
|
|
|
#include "types.h"
|
|
#include "m_actor_type.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#define mIN_ITEM_NAME_LEN 16
|
|
|
|
extern void mIN_copy_name_str(u8* str, mActor_name_t item_no);
|
|
extern int mIN_get_item_article(mActor_name_t item_no);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|