PKHeX/PKHeX.Core/Saves/Access/ISaveBlock6Main.cs
Kurt be50abcc44 Add SubEventLog block object, etc
Adds gym team records, remove from savefile properties
update block list documentation
2019-12-28 21:53:58 -08:00

12 lines
No EOL
355 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; }
SubEventLog6 SUBE { get; }
}
}