1
0

CutWireOnMapInitComponent.cs 284 B

12345678910
  1. namespace Content.Server.Wires;
  2. /// <summary>
  3. /// Picks a random wire on the entity's <see cref="WireComponent"/> and cuts it.
  4. /// Runs at MapInit and removes itself afterwards.
  5. /// </summary>
  6. [RegisterComponent]
  7. public sealed partial class CutWireOnMapInitComponent : Component
  8. {
  9. }