mirror of
https://github.com/ACreTeam/ac-decomp
synced 2026-05-23 06:34:18 -04:00
24 lines
309 B
C
24 lines
309 B
C
#ifndef AC_NAMEPLATE_H
|
|
#define AC_NAMEPLATE_H
|
|
|
|
#include "types.h"
|
|
#include "m_actor.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
extern ACTOR_PROFILE Nameplate_Profile;
|
|
|
|
typedef struct nameplate_actor_s{
|
|
ACTOR actor_class;
|
|
u8 pad[0x2D8 - 0x170];
|
|
}NAMEPLATE_ACTOR;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|
|
|