14 lines
353 B
C#
14 lines
353 B
C#
|
|
using Robust.Shared.GameObjects;
|
||
|
|
|
||
|
|
namespace Content.Server.Explosion.Components
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// Explode using the entity's <see cref="ExplosiveComponent"/> if Triggered.
|
||
|
|
/// </summary>
|
||
|
|
[RegisterComponent]
|
||
|
|
public class ExplodeOnTriggerComponent : Component
|
||
|
|
{
|
||
|
|
public override string Name => "ExplodeOnTrigger";
|
||
|
|
}
|
||
|
|
}
|