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

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