mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-30 07:50:32 +00:00
01fb233e48
Extract some interfaces Suppress some warning messages with commented reasons if appropriate
13 lines
262 B
C#
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);
|
|
}
|
|
}
|