mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 12:33:06 +00:00
20 lines
585 B
C#
20 lines
585 B
C#
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace PKHeX.Core;
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Exposes useful <see cref="SCBlock"/> access information useful for more advanced data requests.
|
|||
|
/// </summary>
|
|||
|
public interface ISCBlockArray
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Gets the list of all data blocks the implementing object has.
|
|||
|
/// </summary>
|
|||
|
public IReadOnlyList<SCBlock> AllBlocks { get; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Gets the <see cref="SCBlockAccessor"/> for the implementing object, allowing for looking up specific blocks by key.
|
|||
|
/// </summary>
|
|||
|
SCBlockAccessor Accessor { get; }
|
|||
|
}
|