mirror of
https://github.com/ACreTeam/ac-decomp
synced 2026-05-23 06:34:18 -04:00
25 lines
335 B
C
25 lines
335 B
C
#ifndef AC_CONVENI_H
|
|
#define AC_CONVENI_H
|
|
|
|
#include "types.h"
|
|
#include "m_actor.h"
|
|
#include "ac_structure.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef struct conveni_actor_s CONVENI_ACTOR;
|
|
|
|
struct conveni_actor_s {
|
|
STRUCTURE_ACTOR struct_class;
|
|
};
|
|
|
|
extern ACTOR_PROFILE Conveni_Profile;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|