mirror of
https://gitgud.io/AbstractConcept/privacy-please.git
synced 2024-08-15 00:03:18 +00:00
41 lines
1.1 KiB
C#
41 lines
1.1 KiB
C#
using Verse;
|
|
using RimWorld;
|
|
using AlienRace;
|
|
|
|
namespace Privacy_Please
|
|
{
|
|
[DefOf]
|
|
public static class ModBodyPartGroupDefOf
|
|
{
|
|
public static BodyPartGroupDef GenitalsBPG;
|
|
public static BodyPartGroupDef AnusBPG;
|
|
public static BodyPartGroupDef ChestBPG;
|
|
}
|
|
|
|
[DefOf]
|
|
public static class ModThoughtDefOf
|
|
{
|
|
public static ThoughtDef SeenHavingSex;
|
|
public static ThoughtDef SeenHavingSexExhibitionist;
|
|
public static ThoughtDef SeenMasturbating;
|
|
public static ThoughtDef SeenMasturbatingExhibitionist;
|
|
public static ThoughtDef SawSex;
|
|
public static ThoughtDef SawSexVoyeur;
|
|
public static ThoughtDef SawMasturbation;
|
|
public static ThoughtDef SawMasturbationVoyeur;
|
|
public static ThoughtDef CaughtCheating;
|
|
}
|
|
|
|
[DefOf]
|
|
public static class ModPreceptDefOf
|
|
{
|
|
public static PreceptDef Exhibitionism_Acceptable;
|
|
public static PreceptDef Exhibitionism_Approved;
|
|
}
|
|
|
|
[DefOf]
|
|
public static class ModFleckDefOf
|
|
{
|
|
public static FleckDef Eye;
|
|
}
|
|
}
|