Added the first genetic infector gene, stretcher, and docs for it

This commit is contained in:
Vegapnk 2024-07-04 09:19:34 +02:00
parent 65ff62cbf9
commit 56f8c2b6b2
7 changed files with 167 additions and 4 deletions

View file

@ -0,0 +1,17 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Verse;
namespace RJW_Genes
{
public class GeneticInfectorExtension : DefModExtension
{
public float infectionChance;
public List<string> infectionGenes;
}
}