Draft for Genetic Diseases

This commit is contained in:
Vegapnk 2024-07-02 15:19:48 +02:00
parent 92e917f473
commit 3aa6fdaabd
8 changed files with 188 additions and 1 deletions

View file

@ -0,0 +1,18 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Verse;
namespace RJW_Genes
{
public class GeneticDiseaseExtension : DefModExtension
{
/// <summary>
/// The chance for this gene to spread upon (finished) sex.
/// </summary>
public float infectionChance;
}
}