mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 12:33:06 +00:00
12 lines
312 B
C#
12 lines
312 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; }
|
|
BerryField6AO BerryField { get; }
|
|
}
|