rjw-events/Source/DefOfs/TaleDefOf.cs

21 lines
379 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 TaleDefOf
{
static TaleDefOf()
{
DefOfHelper.EnsureInitializedInCtor(typeof(TaleDefOf));
}
public static TaleDef AttendedOrgy;
}
}