mirror of
https://github.com/vegapnk/RJW-Genes.git
synced 2024-08-15 00:23:31 +00:00
15 lines
339 B
C#
15 lines
339 B
C#
namespace RJW_Genes
|
|
{
|
|
/// <summary>
|
|
/// Dummy Gene that does not alter the genitalia size. Normal RJW Logic and rolled sizes are kept.
|
|
/// </summary>
|
|
public class Gene_NormalMaleGenitalia : RJW_Gene
|
|
{
|
|
|
|
public override void PostMake()
|
|
{
|
|
base.PostMake();
|
|
}
|
|
|
|
}
|
|
}
|