Files
tbd-station-14/Content.Server/Explosion/Components/DeleteOnTriggerComponent.cs
2022-05-13 17:59:03 +10:00

13 lines
306 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
{
}
}