18 lines
439 B
C#
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.
|
|
}
|
|
} |