1
0

DeleteOnTriggerComponent.cs 284 B

1234567891011
  1. using Content.Server.Explosion.EntitySystems;
  2. namespace Content.Server.Explosion.Components;
  3. /// <summary>
  4. /// Will delete the attached entity upon a <see cref="TriggerEvent"/>.
  5. /// </summary>
  6. [RegisterComponent]
  7. public sealed partial class DeleteOnTriggerComponent : Component
  8. {
  9. }