Files
ArachnaeSwarm/Source/ArachnaeSwarm/Flyover/ARA_SendLetterAfterTicks/CompProperties_SendLetterAfterTicks.cs
2025-10-28 12:01:36 +08:00

22 lines
602 B
C#

using RimWorld;
using Verse;
namespace ArachnaeSwarm
{
public class CompProperties_SendLetterAfterTicks : CompProperties
{
public int ticksDelay = 600; // 默认10秒 (60 ticks/秒)
public string letterLabel;
public string letterText;
public LetterDef letterDef = LetterDefOf.NeutralEvent;
public bool onlySendOnce = true;
public bool requireOnMap = true;
public bool destroyAfterSending = false;
public CompProperties_SendLetterAfterTicks()
{
compClass = typeof(CompSendLetterAfterTicks);
}
}
}