36 lines
591 B
C
36 lines
591 B
C
#ifndef ARC_STD_ENTITY_H_
|
|
#define ARC_STD_ENTITY_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include <stdint.h>
|
|
|
|
/**
|
|
* @brief an entity component system type
|
|
*/
|
|
typedef struct ARC_EntitySystem ARC_EntitySystem;
|
|
|
|
/**
|
|
* @brief an entity component system type
|
|
*/
|
|
typedef uint32_t ARC_Entity;
|
|
|
|
/**
|
|
* @brief
|
|
*/
|
|
void ARC_EntitySystem_Create(ARC_EntitySystem **entitySystem);
|
|
|
|
/**
|
|
* @brief destroys an ARC_EntitySystem
|
|
*
|
|
* @param[in] vector ARC_EntitySystem to free
|
|
*/
|
|
void ARC_EntitySystem_Destroy(ARC_EntitySystem *entitySystem);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // !ARC_STD_ENTITY_H_
|