mirror of
https://github.com/ACreTeam/ac-decomp
synced 2026-05-22 22:24:16 -04:00
22 lines
267 B
C
22 lines
267 B
C
#ifndef AC_FALLS_H
|
|
#define AC_FALLS_H
|
|
|
|
#include "ac_structure.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef struct actor_fall_south_s{
|
|
STRUCTURE_ACTOR structure_class;
|
|
}FALLS_ACTOR;
|
|
|
|
extern ACTOR_PROFILE FallS_Profile;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|
|
|