using Verse; namespace rjwquirks.Modules.Shared.PawnSelectors { /// /// Pawn selectors are designed to provide a flexible way to define pawn requirements in the defs /// public interface IPawnSelector : IDefPart { /// /// Returns true if pawn satisfies all XML-defined conditions /// bool PawnSatisfies(Pawn pawn); } }