PKHeX/PKHeX.Core/Saves/Substructures/Misc/ITeamIndexSet.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

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