rjw-toys-and-masturbation/Source/ThingComps/CompProperties_SexToy.cs

22 lines
510 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using RimWorld;
using Verse;
using rjw;
namespace RJW_ToysAndMasturbation {
public class CompProperties_SexToy : CompProperties {
public Gender primaryGender = Gender.Female;
public float satisfactionModifier = 1.75f;
public List<string> requiredBodyParts;
public CompProperties_SexToy() {
compClass = typeof(CompSexToy);
}
}
}