mirror of
https://github.com/ACreTeam/ac-decomp
synced 2026-05-23 14:41:38 -04:00
22 lines
294 B
C
22 lines
294 B
C
#ifndef AC_FALLSESW_H
|
|
#define AC_FALLSESW_H
|
|
|
|
#include "ac_structure.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef struct actor_falls_south_east_south_west{
|
|
STRUCTURE_ACTOR structure_class;
|
|
}FALLSESW_ACTOR;
|
|
|
|
extern ACTOR_PROFILE FallSESW_Profile;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|
|
|