mirror of
https://gitgud.io/Stardust3D/rjw-plasticsurgeries.git
synced 2024-08-14 23:57:25 +00:00
26 lines
495 B
C#
26 lines
495 B
C#
|
using Verse;
|
|||
|
using RimWorld;
|
|||
|
|
|||
|
namespace rjw
|
|||
|
{
|
|||
|
[DefOf]
|
|||
|
public static class VanillaTraitDefOf
|
|||
|
{
|
|||
|
public static TraitDef Tough;
|
|||
|
|
|||
|
public static TraitDef Nerves;
|
|||
|
|
|||
|
public static TraitDef Beauty;
|
|||
|
|
|||
|
public static TraitDef TooSmart;
|
|||
|
|
|||
|
public static TraitDef NaturalMood;
|
|||
|
|
|||
|
public static TraitDef Cannibal;
|
|||
|
|
|||
|
static VanillaTraitDefOf()
|
|||
|
{
|
|||
|
DefOfHelper.EnsureInitializedInCtor(typeof(VanillaTraitDefOf));
|
|||
|
}
|
|||
|
}
|
|||
|
}
|