privacy-please/Source/Scripts/Utilities/ModDefOf.cs

42 lines
919 B
C#
Raw Normal View History

2022-11-02 05:56:22 +00:00
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 ModPreceptDefOf
{
public static PreceptDef Exhibitionism_Acceptable;
public static PreceptDef Exhibitionism_Approved;
}
[DefOf]
public static class ModFleckDefOf
{
2023-01-31 06:06:52 +00:00
public static FleckDef EyeHeart;
}
[DefOf]
public static class ModJobDefOf
{
public static JobDef WatchSex;
}
[DefOf]
public static class ModInteractionDefOf
{
public static InteractionDef InviteToHaveSex;
public static InteractionDef InviteToHaveGroupSex;
public static InteractionDef InviteVoyeurism;
2022-11-02 05:56:22 +00:00
}
}