The first commit

This commit is contained in:
Banjo Kazooie
2022-07-15 17:09:41 -05:00
commit dd13d34074
1087 changed files with 391897 additions and 0 deletions

23
include/save.h Normal file
View File

@@ -0,0 +1,23 @@
#ifndef __SAVE_H__
#define __SAVE_H__
typedef struct {
u8 unk0[0x4];
u8 unk4[0x14];
u8 pad28[0x5C];
u32 checksum;
}SaveFile;
typedef struct{
u8 unk0;
u8 unk1;
u8 pad2[0x76];
}SaveData;
typedef struct {
u8 unk0[0x04];
u8 unk4[0x18];
u32 checksum;
}SaveSettings;
#endif