botw-completer/source/save_basic.c
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

16 lines
No EOL
334 B
C

#include <string.h>
#include <stdio.h>
#include <switch.h>
#include "save_basic.h"
static gameDataSav save_data = {0};
void openSave() {
printf("Opening BOTW save data...\n");
// TODO: Implement save file reading
}
void processSave() {
printf("Processing save data...\n");
// TODO: Implement save processing logic
}