mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-27 22:40:22 +00:00
23e765e550
Dunno why anyone would want these, lol Closes #3074
9 lines
150 B
C#
9 lines
150 B
C#
using System.Collections.Generic;
|
|
|
|
namespace PKHeX.Core
|
|
{
|
|
public interface IPokeGroup
|
|
{
|
|
IEnumerable<PKM> Contents { get; }
|
|
}
|
|
}
|