mirror of
https://gitgud.io/c0ffeeeeeeee/rjw-events.git
synced 2024-08-14 23:57:42 +00:00
20 lines
391 B
C#
20 lines
391 B
C#
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;
|
|
}
|
|
}
|