mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 12:33:06 +00:00
01fb233e48
Extract some interfaces Suppress some warning messages with commented reasons if appropriate
12 lines
264 B
C#
12 lines
264 B
C#
namespace PKHeX.Core
|
|
{
|
|
public interface ITeamIndexSet
|
|
{
|
|
bool GetIsTeamLocked(int team);
|
|
void SetIsTeamLocked(int team, bool value);
|
|
|
|
void ClearBattleTeams();
|
|
void SaveBattleTeams();
|
|
void UnlockAllTeams();
|
|
}
|
|
}
|