namespace PKHeX.Core; /// /// Interface for Accessing named blocks within a Generation 8 save file. /// public interface ISaveBlock8LA { Box8 BoxInfo { get; } Party8a PartyInfo { get; } MyStatus8a MyStatus { get; } PokedexSave8a PokedexSave { get; } BoxLayout8a BoxLayout { get; } MyItem8a Items { get; } Epoch1970Value AdventureStart { get; } LastSaved8a LastSaved { get; } PlayTime8a Played { get; } }