Working on the Player UI
This commit is contained in:
@ -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.
|
||||
*
|
||||
|
Reference in New Issue
Block a user