PKHeX/PKHeX.Core/Saves/Access/ISaveBlock8Main.cs
Kurt 36dd5ece21 Initial Isle of Armor support
Co-Authored-By: sciresm <sciresm@users.noreply.github.com>
Co-Authored-By: Matt <sora10pls@users.noreply.github.com>
Co-Authored-By: Archit Date <architdate@gmail.com>
2020-06-19 18:51:15 -05:00

22 lines
No EOL
638 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; }
RaidSpawnList8 RaidArmor { get; }
TitleScreen8 TitleScreen { get; }
TeamIndexes8 TeamIndexes { get; }
}
}