mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-16 00:58:01 +00:00
9 lines
No EOL
165 B
C#
9 lines
No EOL
165 B
C#
using System.Collections.Generic;
|
|
|
|
namespace PKHeX.Core
|
|
{
|
|
public interface ISaveBlockAccessor<out T>
|
|
{
|
|
IReadOnlyList<T> BlockInfo { get; }
|
|
}
|
|
} |