Files
ac-decomp/include/ac_rope.h
T
2023-10-24 22:15:44 +02:00

23 lines
251 B
C

#ifndef AC_ROPE_H
#define AC_ROPE_H
#include "types.h"
#include "m_actor.h"
#ifdef __cplusplus
extern "C" {
#endif
extern ACTOR_PROFILE Rope_Profile;
typedef struct rope_actor_s{
ACTOR actor;
}ROPE_ACTOR;
#ifdef __cplusplus
}
#endif
#endif