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

13 lines
231 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 pk);
T[] GetTeam();
void SetTeam(IReadOnlyList<T> team);
}