mirror of
https://gitgud.io/c0ffeeeeeeee/rjw-events.git
synced 2024-08-14 23:57:42 +00:00
22 lines
396 B
C#
22 lines
396 B
C#
using RimWorld;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Verse.AI;
|
|
|
|
namespace RJW_Events
|
|
{
|
|
[DefOf]
|
|
public static class OrgyDutyDefOf
|
|
{
|
|
static OrgyDutyDefOf()
|
|
{
|
|
DefOfHelper.EnsureInitializedInCtor(typeof(DutyDefOf));
|
|
}
|
|
|
|
public static DutyDef Orgy;
|
|
|
|
}
|
|
}
|