using System.Collections.Generic; namespace PKHeX.Core { public interface IRentalTeam where T : PKM { T GetSlot(int slot); void SetSlot(int slot, T pkm); T[] GetTeam(); void SetTeam(IReadOnlyList team); } }