mirror of
https://github.com/kwsch/PKHeX
synced 2024-12-18 16:33:24 +00:00
10 lines
150 B
C#
10 lines
150 B
C#
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace PKHeX.Core
|
|||
|
{
|
|||
|
public interface IPokeGroup
|
|||
|
{
|
|||
|
IEnumerable<PKM> Contents { get; }
|
|||
|
}
|
|||
|
}
|