mirror of
https://gitgud.io/c0ffeeeeeeee/rjw-toys-and-masturbation.git
synced 2024-08-15 00:43:44 +00:00
23 lines
463 B
C#
23 lines
463 B
C#
using RimWorld;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Verse;
|
|
|
|
namespace RJW_ToysAndMasturbation {
|
|
|
|
[DefOf]
|
|
public static class MasturbateToyDefOf {
|
|
|
|
public static JobDef MasturbateWithToy;
|
|
|
|
public static ThoughtDef UsedSexToy;
|
|
|
|
static MasturbateToyDefOf() {
|
|
DefOfHelper.EnsureInitializedInCtor(typeof(JobDefOf));
|
|
}
|
|
|
|
}
|
|
}
|