load(entry_name, default)
Loads and returns the value/object from the save file from the given entry name. This allocates new memory which can be large depending on the data (str and bytearray). If no `default` is passed and the entry is not found, None is returned
Parameters:
entry_name
[value: str, type: str]
default
[value: any (optional, if the `entry_name` isn't found then this default value will be returned instead), type: any]
Return Value: str, bytearray, int, float, Vector2, Vector3, Color, or None
file: src/save/engine_save_module.c