PKHeX/PKHeX.Core/Saves/Access/ISaveBlock6Main.cs
Kurt d4ce0644c8 Simplify block property names
[...]Block -> [...]  since it's kinda redundant, we already know by its
type.
Rename offset ints that collide
2019-10-18 20:42:03 -07:00

11 lines
No EOL
320 B
C#

namespace PKHeX.Core
{
public interface ISaveBlock6Main : ISaveBlock6Core, IPokePuff, IOPower, ILink
{
BoxLayout6 BoxLayout { get; }
BattleBox6 BattleBox { get; }
MysteryBlock6 MysteryGift { get; }
SuperTrainBlock SuperTrain { get; }
MaisonBlock Maison { get; }
}
}