mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-05-19 12:20:22 -05: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; }
|
|
}
|
|
}
|