rjw-genes/Source/Genes/RJW_Gene.cs

25 lines
579 B
C#

using rjw;
using Verse;
namespace RJW_Genes
{
public class RJW_Gene : Gene
{
public override void PostMake()
{
base.PostMake();
if (GenitaliaUtility.PawnStillNeedsGenitalia(pawn))
Sexualizer.sexualize_pawn(pawn);
}
/// <summary>
/// Executed via PawnGenerator.GenerateGenes at Pawn generation
/// Allows for execution of code that should only happen during PawnGeneration
/// </summary>
public virtual void Notify_OnPawnGeneration()
{
}
}
}