rjw-events/Source/DefOfs/ThoughtDefOf.cs

21 lines
391 B
C#
Raw Normal View History

2021-04-12 07:48:48 +00:00
using RimWorld;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace RJW_Events
{
[DefOf]
public static class ThoughtDefOf
{
static ThoughtDefOf()
{
DefOfHelper.EnsureInitializedInCtor(typeof(ThoughtDefOf));
}
public static ThoughtDef AttendedOrgy;
}
}