mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 12:33:06 +00:00
03182ebd3d
Adds support for Scarlet & Violet. Co-Authored-By: SciresM <8676005+SciresM@users.noreply.github.com> Co-Authored-By: Matt <17801814+sora10pls@users.noreply.github.com> Co-Authored-By: Lusamine <30205550+Lusamine@users.noreply.github.com>
22 lines
640 B
C#
22 lines
640 B
C#
namespace PKHeX.Core;
|
|
|
|
/// <summary>
|
|
/// Interface for Accessing named blocks within a Generation 9 save file.
|
|
/// </summary>
|
|
public interface ISaveBlock9Main
|
|
{
|
|
Box8 BoxInfo { get; }
|
|
Party9 PartyInfo { get; }
|
|
MyItem9 Items { get; }
|
|
MyStatus9 MyStatus { get; }
|
|
BoxLayout9 BoxLayout { get; }
|
|
PlayTime9 Played { get; }
|
|
Zukan9 Zukan { get; }
|
|
ConfigSave9 Config { get; }
|
|
TeamIndexes9 TeamIndexes { get; }
|
|
Epoch1970Value LastSaved { get; }
|
|
PlayerFashion9 PlayerFashion { get; }
|
|
PlayerAppearance9 PlayerAppearance { get; }
|
|
RaidSpawnList9 Raid { get; }
|
|
FixedSpawnList9 FixedSpawns { get; }
|
|
}
|