mirror of
https://github.com/ACreTeam/ac-decomp
synced 2026-05-23 06:34:18 -04:00
29 lines
356 B
C
29 lines
356 B
C
#ifndef AC_T_FLAG_H
|
|
#define AC_T_FLAG_H
|
|
|
|
#include "types.h"
|
|
#include "m_actor.h"
|
|
#include "ac_tools.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
extern ACTOR_PROFILE T_Flag_Profile;
|
|
|
|
typedef struct t_flag_s{
|
|
TOOLS_ACTOR tools_class;
|
|
s16 angle;
|
|
s16 addendedang;
|
|
int unk1D0;
|
|
xyz_t work;
|
|
}FLAG_ACTOR;
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|
|
|