17 lines
431 B
C#
17 lines
431 B
C#
using Verse;
|
|
|
|
namespace ArachnaeSwarm
|
|
{
|
|
public class CompProperties_MilkableArachnae : CompProperties
|
|
{
|
|
public int milkIntervalDays;
|
|
public int milkAmount = 1;
|
|
public ThingDef milkDef;
|
|
public bool milkFemaleOnly = true;
|
|
|
|
public CompProperties_MilkableArachnae()
|
|
{
|
|
compClass = typeof(CompMilkableArachnae); // 注意这里是 CompMilkableArachnae
|
|
}
|
|
}
|
|
} |