coffees-rjw-ideology-addons/CRIALactation/Source/ThingDefOf/ThingDefOf_Milk.cs

29 lines
555 B
C#
Raw Normal View History

2021-11-17 05:37:17 +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 ThingDefOf_Milk
{
static ThingDefOf_Milk()
{
DefOfHelper.EnsureInitializedInCtor(typeof(ThingDefOf_Milk));
}
public static ThingDef HumanMilk;
public static ThingDef HumanoidMilk;
2023-02-06 03:05:01 +00:00
public static ThingDef HumanMilkBulk;
public static ThingDef HumanoidMilkBulk;
2021-11-17 05:37:17 +00:00
}
}