17 lines
229 B
C
17 lines
229 B
C
#ifndef ARC_STD_LIFE_H_
|
|
#define ARC_STD_LIFE_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/**
|
|
* @brief an entity component system type
|
|
*/
|
|
typedef struct ARC_Life ARC_Life;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // !ARC_STD_LIFE_H_
|