coffees-rjw-ideology-addons/CRIALactation/Source/HistoryEventDefOf/HistoryEventDefOf_Milk.cs

25 lines
540 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;
namespace CRIALactation
{
[DefOf]
public static class HistoryEventDefOf_Milk
{
static HistoryEventDefOf_Milk()
{
DefOfHelper.EnsureInitializedInCtor(typeof(HistoryEventDefOf_Milk));
}
public static HistoryEventDef DrankMilkRaw;
public static HistoryEventDef DrankMilkMeal;
public static HistoryEventDef DrankNonMilkMeal;
2021-11-17 05:37:17 +00:00
}
}