mirror of
https://github.com/kwsch/PKHeX
synced 2024-12-01 00:09:14 +00:00
14 lines
262 B
C#
14 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);
|
|||
|
}
|
|||
|
}
|