PKHeX/PKHeX.Core/Saves/Substructures/Misc/IPokeGroup.cs

10 lines
150 B
C#
Raw Normal View History

using System.Collections.Generic;
namespace PKHeX.Core
{
public interface IPokeGroup
{
IEnumerable<PKM> Contents { get; }
}
}