Files
2024-11-28 02:18:08 -05:00

25 lines
323 B
C

#ifndef AC_SUPER_H
#define AC_SUPER_H
#include "types.h"
#include "m_actor.h"
#include "ac_structure.h"
#ifdef __cplusplus
extern "C" {
#endif
typedef struct super_actor_s SUPER_ACTOR;
struct super_actor_s {
STRUCTURE_ACTOR struct_class;
};
extern ACTOR_PROFILE Super_Profile;
#ifdef __cplusplus
}
#endif
#endif