namespace PkmnLib.Dynamic.Models;

public interface IBattleParty
{
    IPokemonParty Party { get; }
    bool IsResponsibleForIndex(byte side, byte position);
    bool HasPokemonNotInField();
}