mirror of
https://github.com/kwsch/PKHeX
synced 2025-02-25 20:07:09 +00:00
14 lines
377 B
C#
14 lines
377 B
C#
|
namespace PKHeX.Core
|
|||
|
{
|
|||
|
public interface ISaveBlock5BW
|
|||
|
{
|
|||
|
MyItem Items { get; }
|
|||
|
Zukan5 Zukan { get; }
|
|||
|
Misc5 MiscBlock { get; }
|
|||
|
MysteryBlock5 MysteryBlock { get; }
|
|||
|
Daycare5 DaycareBlock { get; }
|
|||
|
BoxLayout5 BoxLayout { get; }
|
|||
|
PlayerData5 PlayerData { get; }
|
|||
|
BattleSubway5 BattleSubwayBlock { get; }
|
|||
|
}
|
|||
|
}
|