mirror of
https://github.com/ACreTeam/ac-decomp
synced 2026-05-22 22:24:16 -04:00
22 lines
273 B
C
22 lines
273 B
C
#ifndef AC_RESERVE_H
|
|
#define AC_RESERVE_H
|
|
|
|
#include "ac_structure.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef struct actor_reserve_s {
|
|
STRUCTURE_ACTOR structure_class;
|
|
}RESERVE_ACTOR;
|
|
|
|
extern ACTOR_PROFILE Reserve_Profile;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|
|
|