mirror of
https://github.com/ACreTeam/ac-decomp
synced 2026-05-23 06:34:18 -04:00
31 lines
490 B
C
31 lines
490 B
C
#ifndef AC_BIRTH_CONTROL_H
|
|
#define AC_BIRTH_CONTROL_H
|
|
|
|
#include "types.h"
|
|
#include "m_actor.h"
|
|
#include "m_field_make.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef struct birth_control_s BIRTH_CONTROL_ACTOR;
|
|
|
|
struct birth_control_s {
|
|
ACTOR actor_class;
|
|
int setup_actor_flag;
|
|
mFM_move_actor_c* move_actor_data;
|
|
u16 move_actor_bitfield;
|
|
s16 move_actor_list_exists_flag;
|
|
int boat_spawned;
|
|
};
|
|
|
|
extern ACTOR_PROFILE Birth_Control_Profile;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|
|
|