Files
2024-02-21 00:06:14 +01:00

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