small fixes for config, entity, and some physics functions for vector2

This commit is contained in:
herbglitch 2025-04-07 06:41:52 -06:00
parent 017629872f
commit 21a66f7fe6
5 changed files with 60 additions and 3 deletions

View file

@ -221,7 +221,17 @@ void ARC_Config_UnloadFromString(ARC_Config *config, ARC_String **string);
* @breif config the config to unload the file from
* @breif path the location of the .chemical file to unload
*/
void ARC_Config_UnloadFromFile(ARC_Config *config, ARC_String *data);
void ARC_Config_UnloadFromFile(ARC_Config *config, ARC_String *path);
/**
* @brief takes a given file path and unloads it into the config
*
* @note this path will be based on wherever the executable is run from
*
* @breif config the config to unload the file from
* @breif path the location of the .chemical file to unload
*/
void ARC_Config_UnloadFromFileWithCStr(ARC_Config *config, const char *path);
/**
* @{