mirror of
https://github.com/space-syndicate/space-station-14.git
synced 2026-02-15 03:50:54 +01:00
12 lines
284 B
C#
12 lines
284 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 partial class DeleteOnTriggerComponent : Component
|
|
{
|
|
}
|