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