mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-27 06:20:25 +00:00
fc754b346b
[Language Reference](https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/proposals/csharp-10.0/file-scoped-namespaces) Updates all the files, one less level of indentation. Some small changes were made to API surfaces, renaming `PKM pkm` -> `PKM pk`, and `LegalityAnalysis.pkm` -> `LegalityAnalysis.Entity`
25 lines
702 B
C#
25 lines
702 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; }
|
|
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; }
|
|
RaidSpawnList8 RaidCrown { get; }
|
|
TitleScreen8 TitleScreen { get; }
|
|
TeamIndexes8 TeamIndexes { get; }
|
|
}
|