Add project files.

This commit is contained in:
c0ffeeeeeeee 2020-11-05 14:09:05 -08:00
parent d2dbc71d94
commit 39924e2af5
17 changed files with 487 additions and 0 deletions

View file

@ -0,0 +1,21 @@
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;
static MasturbateToyDefOf() {
DefOfHelper.EnsureInitializedInCtor(typeof(JobDefOf));
}
}
}