mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-22 16:17:00 +03:00
11 lines
226 B
C#
11 lines
226 B
C#
using Robust.Shared.GameObjects;
|
|
|
|
namespace Content.Shared.Electrocution
|
|
{
|
|
[RegisterComponent]
|
|
public sealed class ElectrocutedComponent : Component
|
|
{
|
|
public override string Name => "Electrocuted";
|
|
}
|
|
}
|