PKHeX/PKHeX.Core/Saves/Substructures/Misc/IPokeGroup.cs
Kurt 23e765e550 Add opening for rental team dumps
Dunno why anyone would want these, lol
Closes #3074
2020-11-03 20:12:42 -08:00

9 lines
150 B
C#

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