mirror of
https://github.com/ACreTeam/ac-decomp
synced 2026-05-22 22:24:16 -04:00
24 lines
341 B
C
24 lines
341 B
C
#ifndef AC_MUSEUM_FOSSIL_H
|
|
#define AC_MUSEUM_FOSSIL_H
|
|
|
|
#include "types.h"
|
|
#include "m_actor.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef struct museum_fossil_actor_s {
|
|
ACTOR actor_class;
|
|
s16 target_angle;
|
|
int msg_no;
|
|
} MUSEUM_FOSSIL_ACTOR;
|
|
|
|
extern ACTOR_PROFILE Museum_Fossil_Profile;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|