mirror of
https://github.com/encounter/ac-decomp.git
synced 2026-03-30 10:57:04 -07:00
24 lines
294 B
C
24 lines
294 B
C
#ifndef AC_BOXMOVE_H
|
|
#define AC_BOXMOVE_H
|
|
|
|
#include "types.h"
|
|
#include "m_actor.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef struct box_move_s{
|
|
ACTOR actor_class;
|
|
u8 pad[0x28C - 0x174];
|
|
}BOXMOVE_ACTOR;
|
|
|
|
extern ACTOR_PROFILE BoxMove_Profile;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|
|
|