Files
842e44dc8ba7e5bd5dcb8cf24b33c5d58d25ec8a
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
|
|||
{
|
|||
}
|