2021-07-26 04:06:00 +00:00
|
|
|
|
using RimWorld;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using Verse;
|
|
|
|
|
|
|
|
|
|
namespace CRIALactation
|
|
|
|
|
{
|
|
|
|
|
[DefOf]
|
|
|
|
|
public static class HediffDefOf_Milk {
|
|
|
|
|
static HediffDefOf_Milk()
|
|
|
|
|
{
|
|
|
|
|
DefOfHelper.EnsureInitializedInCtor(typeof(HediffDefOf_Milk));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static HediffDef Lactating_Drug;
|
|
|
|
|
public static HediffDef Lactating_Permanent;
|
|
|
|
|
public static HediffDef Heavy_Lactating_Permanent;
|
|
|
|
|
public static HediffDef Lactating_Natural;
|
2021-08-02 18:55:46 +00:00
|
|
|
|
public static HediffDef Hucow;
|
2021-07-26 04:06:00 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|