2022-11-25 01:42:17 +00:00
|
|
|
namespace PKHeX.Core;
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Interface for Accessing named blocks within a Generation 9 save file.
|
|
|
|
/// </summary>
|
|
|
|
public interface ISaveBlock9Main
|
|
|
|
{
|
|
|
|
Box8 BoxInfo { get; }
|
|
|
|
Party9 PartyInfo { get; }
|
|
|
|
MyItem9 Items { get; }
|
|
|
|
MyStatus9 MyStatus { get; }
|
|
|
|
BoxLayout9 BoxLayout { get; }
|
|
|
|
PlayTime9 Played { get; }
|
|
|
|
Zukan9 Zukan { get; }
|
|
|
|
ConfigSave9 Config { get; }
|
|
|
|
TeamIndexes9 TeamIndexes { get; }
|
|
|
|
Epoch1970Value LastSaved { get; }
|
|
|
|
PlayerFashion9 PlayerFashion { get; }
|
|
|
|
PlayerAppearance9 PlayerAppearance { get; }
|
2023-09-18 02:49:26 +00:00
|
|
|
RaidSpawnList9 RaidPaldea { get; }
|
|
|
|
RaidSpawnList9 RaidKitakami { get; }
|
2023-12-18 00:41:15 +00:00
|
|
|
RaidSpawnList9 RaidBlueberry { get; }
|
|
|
|
BlueberryQuestRecord9 BlueberryQuestRecord { get; }
|
2022-11-25 01:42:17 +00:00
|
|
|
}
|