11 lines
284 B
C#
11 lines
284 B
C#
namespace Content.Server.Wires;
|
|
|
|
/// <summary>
|
|
/// Picks a random wire on the entity's <see cref="WireComponent"/> and cuts it.
|
|
/// Runs at MapInit and removes itself afterwards.
|
|
/// </summary>
|
|
[RegisterComponent]
|
|
public sealed partial class CutWireOnMapInitComponent : Component
|
|
{
|
|
}
|