PKHeX/PKHeX.Core/Saves/Access/ISaveBlock8Main.cs
Kurt 4ea2be250f Add TitleScreen8 and Trainer Card team structs
Closes #2653 , ty @CanoeHope !

Editable from the Trainer Info button, comes with a Copy From Party button for each.
2020-01-21 23:23:27 -08:00

20 lines
554 B
C#

namespace PKHeX.Core
{
public interface ISaveBlock8Main
{
Box8 BoxInfo { get; }
Party8 PartyInfo { get; }
MyItem Items { get; }
MyStatus8 MyStatus { get; }
Misc8 Misc { get; }
Zukan8 Zukan { get; }
BoxLayout8 BoxLayout { get; }
PlayTime8 Played { get; }
Fused8 Fused { get; }
Daycare8 Daycare { get; }
Record8 Records { get; }
TrainerCard8 TrainerCard { get; }
RaidSpawnList8 Raid { get; }
TitleScreen8 TitleScreen { get; }
}
}