rjw-genes/Source/Genes/Hive/Abilities/CompProperties_AbilitySpawnSpelopede.cs

22 lines
472 B
C#
Raw Normal View History

2023-04-18 07:06:29 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Verse;
using RimWorld;
namespace RJW_Genes
{
public class CompProperties_AbilitySpawnSpelopede : CompProperties_AbilityEffect
{
public PawnKindDef pawnKindDef;
public float sensitivityMultiplier;
public bool tamed;
public CompProperties_AbilitySpawnSpelopede()
{
this.compClass = typeof(CompAbilityEffect_SpawnSpelopede);
}
}
}