mirror of
https://github.com/ACreTeam/ac-decomp
synced 2026-05-23 06:34:18 -04:00
24 lines
297 B
C
24 lines
297 B
C
#ifndef AC_TAMA_H
|
|
#define AC_TAMA_H
|
|
|
|
#include "types.h"
|
|
#include "m_actor.h"
|
|
#include "ac_structure.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef struct tama_actor_s {
|
|
STRUCTURE_ACTOR structure_class;
|
|
} TAMA_ACTOR;
|
|
|
|
extern ACTOR_PROFILE Tama_Profile;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|
|
|