mirror of
https://gitgud.io/AbstractConcept/rimworld-animations-patch.git
synced 2024-08-15 00:43:27 +00:00
23 lines
544 B
C#
23 lines
544 B
C#
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;
|
|
}
|
|
|
|
[DefOf]
|
|
public static class PatchBodyPartDefOf
|
|
{
|
|
public static BodyPartDef Hand;
|
|
public static BodyPartDef Genitals;
|
|
public static BodyPartDef Anus;
|
|
public static BodyPartDef Chest;
|
|
}
|
|
}
|