rimworld-animations-patch_m.../Source/Scripts/Utilities/PatchDefOf.cs

24 lines
544 B
C#
Raw Normal View History

2022-09-10 01:22:08 +00:00
using Verse;
using RimWorld;
using AlienRace;
namespace Rimworld_Animations_Patch
{
[DefOf]
public static class PatchBodyPartGroupDefOf
{
public static BodyPartGroupDef GenitalsBPG;
public static BodyPartGroupDef AnusBPG;
public static BodyPartGroupDef ChestBPG;
}
2022-09-30 23:34:08 +00:00
[DefOf]
public static class PatchBodyPartDefOf
{
public static BodyPartDef Hand;
2023-02-04 07:13:57 +00:00
public static BodyPartDef Genitals;
public static BodyPartDef Anus;
public static BodyPartDef Chest;
2022-09-30 23:34:08 +00:00
}
2022-09-10 01:22:08 +00:00
}