PKHeX/PKHeX.Core/Saves/Access/ISaveBlock6Main.cs
Kurt c24851129f Add super training block details & to block access
Use some properties in the super training editor, not gonna rewrite that
even though it really needs it :)
2019-10-17 20:13:17 -07:00

10 lines
No EOL
290 B
C#

namespace PKHeX.Core
{
public interface ISaveBlock6Main : ISaveBlock6Core, IPokePuff, IOPower, ILink
{
BoxLayout6 BoxLayout { get; }
BattleBox6 BattleBoxBlock { get; }
MysteryBlock6 MysteryBlock { get; }
SuperTrainBlock SuperTrain { get; }
}
}