Files
ArachnaeSwarm/Source/ArachnaeSwarm/Building_Comps/CompForceTargetable.cs
2025-09-25 12:32:24 +08:00

18 lines
439 B
C#

using Verse;
namespace ArachnaeSwarm
{
public class CompProperties_ForceTargetable : CompProperties
{
public CompProperties_ForceTargetable()
{
this.compClass = typeof(CompForceTargetable);
}
}
public class CompForceTargetable : ThingComp
{
// This component doesn't need any specific logic.
// Its mere presence on a turret is checked by the Harmony patch.
}
}