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