PKHeX/PKHeX.Core/Saves/Substructures/Misc/IRentalTeam.cs
Kurt 01fb233e48 Minor tweaks
Extract some interfaces
Suppress some warning messages with commented reasons if appropriate
2020-09-09 12:47:24 -07:00

13 lines
262 B
C#

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);
}
}