mirror of
https://github.com/ACreTeam/ac-decomp
synced 2026-05-23 06:34:18 -04:00
22 lines
257 B
C
22 lines
257 B
C
#ifndef AC_TENT_H
|
|
#define AC_TENT_H
|
|
|
|
#include "ac_structure.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef struct TENT_ACTOR_s{
|
|
STRUCTURE_ACTOR structure_class;
|
|
}TENT_ACTOR;
|
|
|
|
extern ACTOR_PROFILE Tent_Profile;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|
|
|