mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 20:43:07 +00:00
691f941bb6
Co-Authored-By: Matt <17801814+sora10pls@users.noreply.github.com> Co-Authored-By: SciresM <8676005+SciresM@users.noreply.github.com> Co-Authored-By: Lusamine <30205550+Lusamine@users.noreply.github.com>
17 lines
497 B
C#
17 lines
497 B
C#
namespace PKHeX.Core;
|
|
|
|
/// <summary>
|
|
/// Interface for Accessing named blocks within a Generation 8 <see cref="GameVersion.PLA"/> save file.
|
|
/// </summary>
|
|
public interface ISaveBlock8LA
|
|
{
|
|
Box8 BoxInfo { get; }
|
|
Party8a PartyInfo { get; }
|
|
MyStatus8a MyStatus { get; }
|
|
PokedexSave8a PokedexSave { get; }
|
|
BoxLayout8a BoxLayout { get; }
|
|
MyItem8a Items { get; }
|
|
AdventureStart8a AdventureStart { get; }
|
|
LastSaved8a LastSaved { get; }
|
|
PlayTime8a Played { get; }
|
|
}
|