2021-11-09 21:24:35 +01:00
|
|
|
using Content.Server.Explosion.EntitySystems;
|
2021-07-25 20:09:08 +10:00
|
|
|
using Robust.Shared.GameObjects;
|
|
|
|
|
|
|
|
|
|
namespace Content.Server.Explosion.Components
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Will delete the attached entity upon a <see cref="TriggerEvent"/>.
|
|
|
|
|
/// </summary>
|
|
|
|
|
[RegisterComponent]
|
|
|
|
|
public class DeleteOnTriggerComponent : Component
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
}
|