mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-17 13:37:47 +03:00
15 lines
357 B
C#
15 lines
357 B
C#
using Robust.Shared.GameObjects;
|
|
using Robust.Shared.Serialization.Manager.Attributes;
|
|
|
|
namespace Content.Server.Electrocution
|
|
{
|
|
[RegisterComponent]
|
|
public class RandomInsulationComponent : Component
|
|
{
|
|
public override string Name => "RandomInsulation";
|
|
|
|
[DataField("list")]
|
|
public readonly float[] List = { 0f };
|
|
}
|
|
}
|