FluffyManager.Utilities_Livestock.GetTame C# (CSharp) Method

GetTame() public static method

public static GetTame ( this pawnKind, Map map ) : List
pawnKind this
map Map
return List
        public static List<Pawn> GetTame( this PawnKindDef pawnKind, Map map )
        {
            return pawnKind.GetAll( map ).Where( p => p.Faction == Faction.OfPlayer ).ToList();
        }

Same methods

Utilities_Livestock::GetTame ( this pawnKind, Map map, AgeAndSex ageSex ) : List