using Verse; namespace rjwquirks.Modules.Shared.PawnSelectors { /// /// Partner selectors are similar to the pawn selectors, but can define relations between two pawns. /// public interface IPartnerSelector : IDefPart { /// /// Returns true if the partner satisfies all XML-defined conditions in relation to the pawn. /// Non-commutative /// bool PartnerSatisfies(Pawn pawn, Pawn partner); } }