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