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

14 lines
262 B
C#
Raw Normal View History

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