Working on the Player UI

This commit is contained in:
2021-09-06 09:12:45 -07:00
parent 2285568480
commit 6c10429dfb
22 changed files with 262 additions and 53 deletions

View File

@ -48,6 +48,14 @@ void dynArraySet(dynarray_t *array, int32_t i, void *data);
*/
int32_t dynArrayPush(dynarray_t *array, void *data);
/**
* Create a new element in the array for you to use.
*
* @param array Array to add to.
* @return The index that the item was added to.
*/
int32_t dynArrayAdd(dynarray_t *array);
/**
* "Pops" (Removes) the last element from the array.
*