using System.Collections.Generic;
namespace PKHeX.Core;
///
/// Exposes useful access information useful for more advanced data requests.
///
public interface ISCBlockArray
{
///
/// Gets the list of all data blocks the implementing object has.
///
public IReadOnlyList AllBlocks { get; }
///
/// Gets the for the implementing object, allowing for looking up specific blocks by key.
///
SCBlockAccessor Accessor { get; }
}