mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-17 05:27:38 +03:00
errors/test fail ops --------- Co-authored-by: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com> (cherry picked from commit 7c5c4ba53b562720202937d19ae266b9e3c74f99)
18 lines
408 B
C#
18 lines
408 B
C#
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared.Electrocution;
|
|
|
|
[Serializable, NetSerializable]
|
|
public enum ElectrifiedLayers : byte
|
|
{
|
|
Sparks,
|
|
HUD,
|
|
}
|
|
|
|
[Serializable, NetSerializable]
|
|
public enum ElectrifiedVisuals : byte
|
|
{
|
|
ShowSparks, // only shown when zapping someone, deactivated after a short time
|
|
IsElectrified, // if the entity is electrified or not, used for the AI HUD
|
|
}
|