rjw-genes/Source/Animal_Inheritance/Defs/RaceGeneDef.cs

22 lines
628 B
C#
Raw Normal View History

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; //keeping this for backwards compatibility
public List<string> raceGroups; //racegroup, but in list form so multiple can be entered, preference to use this over racegroup
public List<string> raceNames;
public List<string> pawnKindNames;
2022-12-18 09:25:57 +00:00
public List<BestialityGeneInheritanceDef> genes;
2023-01-23 13:06:06 +00:00
public string hybridName;
}
}