using System.Collections.Generic; namespace PKHeX.Core { /// /// Interface for Accessing named blocks within a save file. /// public interface ISaveBlockAccessor { /// /// List of all known block details. /// IReadOnlyList BlockInfo { get; } } }