PKHeX/PKHeX.Core/Saves/Substructures/Misc/ITeamIndexSet.cs

13 lines
264 B
C#
Raw Normal View History

namespace PKHeX.Core
{
public interface ITeamIndexSet
{
bool GetIsTeamLocked(int team);
void SetIsTeamLocked(int team, bool value);
void ClearBattleTeams();
void SaveBattleTeams();
void UnlockAllTeams();
}
}