string arrays and started work on ecs
This commit is contained in:
parent
5a0d1af942
commit
d4731d3961
6 changed files with 186 additions and 59 deletions
|
|
@ -0,0 +1,32 @@
|
|||
#ifndef ARC_ENGINE_ECS_H_
|
||||
#define ARC_ENGINE_ECS_H_
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
#include "arc/std/vector.h"
|
||||
#include <stdint.h>
|
||||
|
||||
/**
|
||||
* @brief a type that keeps permanice of data for when loading and unloading config files
|
||||
*/
|
||||
typedef struct ARC_ECS ARC_ECS;
|
||||
|
||||
/**
|
||||
* @brief creates ARC_Config type
|
||||
*
|
||||
* @param ecs ARC_ECS
|
||||
*/
|
||||
void ARC_ECS_Create(ARC_ECS **ecs);
|
||||
|
||||
/**
|
||||
* @brief destroys ARC_ECS type
|
||||
*/
|
||||
void ARC_ECS_Destroy(ARC_ECS *ecs);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif //ARC_ENGINE_ECS_H_
|
||||
Loading…
Add table
Add a link
Reference in a new issue