2020-11-03 20:12:42 -08:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
2022-06-18 11:04:24 -07:00
|
|
|
|
namespace PKHeX.Core;
|
|
|
|
|
|
|
|
|
|
public interface IPokeGroup
|
2020-11-03 20:12:42 -08:00
|
|
|
|
{
|
2022-06-18 11:04:24 -07:00
|
|
|
|
IEnumerable<PKM> Contents { get; }
|
2020-11-03 20:12:42 -08:00
|
|
|
|
}
|