wrote documentation for spritesheet, and worked on adding spritesheet to graphics config

This commit is contained in:
herbglitch 2025-03-19 05:13:11 -06:00
parent bbffbe1cb3
commit 83b87c6d63
9 changed files with 136 additions and 126 deletions

View file

@ -35,11 +35,15 @@ typedef struct ARC_ConfigType {
/**
* @brief creates the arc config type (a type that loads in config files and can have types added to it)
*
* @param[out] ARC_Config to create
*/
void ARC_Config_Create(ARC_Config **config);
/**
* @brief destroys an ARC_Config type
*
* @param[in] config ARC_Config to destroy
*/
void ARC_Config_Destroy(ARC_Config *config);
@ -119,6 +123,11 @@ void ARC_Config_LoadFromString(ARC_Config *config, ARC_String **string);
*/
void ARC_Config_LoadFromFile(ARC_Config *config, ARC_String *path);
/**
* @brief TODO: write this
*/
void ARC_Config_LoadFromFileWithCStr(ARC_Config *config, const char *path);
/**
* @brief TODO: write this
*/