blob: 45c127c0f0d91d673b5821969d245817aafd1507 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/*
* Example Gen3-multiboot payload by slipstream/RoL 2017.
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.
*
* saveblocks.h: describes saveblock structures for all of Gen 3 (yay!)
*/
// TODO: this entire file. Placeholders for now, fill in later, if I can be bothered.
// I don't really want to make a fork of pokeruby's headers for now...
typedef u8 SaveBlock1, *pSaveBlock1;
typedef u8 SaveBlock2, *pSaveBlock2;
typedef u8 SaveBlock3, *pSaveBlock3;
|