8 lines
192 B
C#
8 lines
192 B
C#
|
namespace PkmnLib.Dynamic.Models;
|
||
|
|
||
|
public interface IBattleParty
|
||
|
{
|
||
|
IPokemonParty Party { get; }
|
||
|
bool IsResponsibleForIndex(byte side, byte position);
|
||
|
bool HasPokemonNotInField();
|
||
|
}
|