14 lines
359 B
C#
14 lines
359 B
C#
using Content.Server.Explosion.EntitySystems;
|
|
|
|
namespace Content.Server.Explosion.Components;
|
|
|
|
/// <summary>
|
|
/// Will anchor the attached entity upon a <see cref="TriggerEvent"/>.
|
|
/// </summary>
|
|
[RegisterComponent]
|
|
public sealed partial class AnchorOnTriggerComponent : Component
|
|
{
|
|
[DataField("removeOnTrigger")]
|
|
public bool RemoveOnTrigger = true;
|
|
}
|