Exemplo n.º 1
0
 public static bool GetGenderLabel(Pawn pawn, ref string __result)
 {
     if (!PawnHelper.is_human(pawn))
     {
         return(true);
     }
     __result = BetterGenderUtility.Noun(pawn);
     return(false);
 }
Exemplo n.º 2
0
 public static bool GetObjective(Pawn p, ref string __result)
 {
     if (!PawnHelper.is_human(p))
     {
         return(true);
     }
     __result = BetterGenderUtility.Objective(p);
     return(false);
 }