public static void SetLlastFoodType(Pawn pawn, string foodType) { if (llastFoodType is null) { llastFoodType = new HadAteFoodType(); } llastFoodType.SetHadAteFoodType(pawn, foodType); }
public static string GetLlastFoodType(Pawn pawn) { if (llastFoodType is null) { llastFoodType = new HadAteFoodType(); } return(llastFoodType.GetHadAteFoodType(pawn)); }