mirror of
https://github.com/vegapnk/RJW-Genes.git
synced 2024-08-15 00:23:31 +00:00
8a7138106a
Added an priority option to xml which decides the racegenedef to choose if an animal is present in multiple racegenedefs (under the same variable (racegroups, racenames or kinddefs
21 lines
490 B
C#
21 lines
490 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Verse;
|
|
using rjw;
|
|
|
|
namespace RJW_BGS
|
|
{
|
|
public class RaceGeneDef : Def
|
|
{
|
|
public int priority;
|
|
public String raceGroup;
|
|
public List<string> raceNames;
|
|
public List<string> pawnKindNames;
|
|
public List<BestialityGeneInheritanceDef> genes;
|
|
//public List<float> genechances;
|
|
public String hybridName;
|
|
}
|
|
}
|