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
11
include/arc/std/array.h
Normal file
11
include/arc/std/array.h
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
#ifndef ARC_STD_ARRAY_H_
|
||||
#define ARC_STD_ARRAY_H_
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
typedef struct ARC_Array {
|
||||
uint32_t *size;
|
||||
void *data;
|
||||
} ARC_Array;
|
||||
|
||||
#endif //ARC_STD_ARRAY_H_
|
||||
Loading…
Add table
Add a link
Reference in a new issue