PKHeX/PKHeX.Core/Saves/Access/ISaveBlock8Main.cs
Jonathan Herbert 78fba23eae
Replace Epoch1900DateTimeValue Duplicate Logic Instances (#4207)
* Replace LastSaved8a With Epoch1900DateTimeValue

Since LastSaved8a basically implemented the same logic, replace it and update Epoch1900DateTimeValue.DisplayValue to not display seconds if they aren't present

* Replace PlayTime8 With PlayTime7b
2024-03-09 00:41:26 -06:00

25 lines
706 B
C#

namespace PKHeX.Core;
/// <summary>
/// Interface for Accessing named blocks within a Generation 8 save file.
/// </summary>
public interface ISaveBlock8Main
{
Box8 BoxInfo { get; }
Party8 PartyInfo { get; }
MyItem8 Items { get; }
MyStatus8 MyStatus { get; }
Misc8 Misc { get; }
Zukan8 Zukan { get; }
BoxLayout8 BoxLayout { get; }
PlayTime7b Played { get; }
Fused8 Fused { get; }
Daycare8 Daycare { get; }
Record8 Records { get; }
TrainerCard8 TrainerCard { get; }
RaidSpawnList8 RaidGalar { get; }
RaidSpawnList8 RaidArmor { get; }
RaidSpawnList8 RaidCrown { get; }
TitleScreen8 TitleScreen { get; }
TeamIndexes8 TeamIndexes { get; }
}