Files
2024-07-08 00:29:34 -04:00

27 lines
451 B
C

#ifndef AC_TRAIN_DOOR_H
#define AC_TRAIN_DOOR_H
#include "types.h"
#include "ac_common.h"
#ifdef __cplusplus
extern "C" {
#endif
#define aTRD_JOINT_NUM 5
typedef struct traindoor_s {
/* 0x000 */ CMN_ACTOR common_actor_class;
/* 0x210 */ s_xyz work[aTRD_JOINT_NUM];
/* 0x22E */ s_xyz target[aTRD_JOINT_NUM];
/* 0x24C */ int open_flag;
} TRAINDOOR_ACTOR;
extern ACTOR_PROFILE TrainDoor_Profile;
#ifdef __cplusplus
}
#endif
#endif