mirror of
https://gitgud.io/c0ffeeeeeeee/rjw-toys-and-masturbation.git
synced 2024-08-15 00:43:44 +00:00
21 lines
510 B
C#
21 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);
|
|
}
|
|
|
|
}
|
|
}
|