PKHeX/PKHeX.Core/Saves/Access/ISaveBlock6AO.cs
Kurt 0686922d5c Rewrite gen6ao secret base handling, i/o, GUI
Closes #3177

Format sizes are now accurate to game structure sizes. Added a few more editable fields, rid of label/textbox/etc for general base editing -- use a PropertyGrid instead.

Feels nice having a bank of saves to reference + idb to discover the struct layout.
2021-06-13 00:38:47 -07:00

12 lines
315 B
C#

namespace PKHeX.Core
{
/// <summary>
/// Interface for Accessing named blocks within a Generation 6 save file.
/// </summary>
public interface ISaveBlock6AO : ISaveBlock6Main
{
Misc6AO Misc { get; }
Zukan6AO Zukan { get; }
SecretBase6Block SecretBase { get; }
}
}