using System.Collections.Generic; using System.Diagnostics.CodeAnalysis; namespace PKHeX.Core; /// /// Interface for Accessing named blocks within a save file. /// [DynamicallyAccessedMembers(DynamicallyAccessedMemberTypes.All)] public interface ISaveBlockAccessor { /// /// List of all known block details. /// IReadOnlyList BlockInfo { get; } }