PkmnLib.NET/PkmnLib.Dynamic/Models/BattleParty.cs

8 lines
192 B
C#

namespace PkmnLib.Dynamic.Models;
public interface IBattleParty
{
IPokemonParty Party { get; }
bool IsResponsibleForIndex(byte side, byte position);
bool HasPokemonNotInField();
}