mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-05-16 17:36:23 -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; }
|
|
}
|
|
}
|