botw-completer/source/save_basic.h
badbl0cks adfc526f6c
Add basic save file structure
- Create save.h with gameDataSav struct
- Add placeholder functions for save handling
- Foundation for BOTW save data manipulation
2023-05-16 14:16:25 -07:00

15 lines
No EOL
170 B
C

#ifndef SAVE_H
#define SAVE_H
#include <stdlib.h>
typedef struct
{
size_t length;
char * saveFile;
} gameDataSav;
void processSave();
void openSave();
#endif