Files
tbd-station-14/Content.Server/Explosion/Components/OnTrigger/DeleteOnTriggerComponent.cs
2023-08-11 00:29:47 +10:00

12 lines
276 B
C#

using Content.Server.Explosion.EntitySystems;
namespace Content.Server.Explosion.Components;
/// <summary>
/// Will delete the attached entity upon a <see cref="TriggerEvent"/>.
/// </summary>
[RegisterComponent]
public sealed class DeleteOnTriggerComponent : Component
{
}