mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-24 04:53:08 +00:00
18 lines
No EOL
475 B
C#
18 lines
No EOL
475 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; }
|
|
}
|
|
} |