14 lines
No EOL
389 B
C#
14 lines
No EOL
389 B
C#
using Robust.Shared.GameStates;
|
|
|
|
namespace Content.Shared.Sunrise.Eye;
|
|
|
|
/// <summary>
|
|
/// Piece of gear that darkens the user vision
|
|
/// </summary>
|
|
[RegisterComponent, NetworkedComponent, AutoGenerateComponentState]
|
|
[Access(typeof(VisionDarkenerSystem))]
|
|
public sealed partial class VisionDarkenerComponent : Component
|
|
{
|
|
[DataField, AutoNetworkedField]
|
|
public float Strength = 0;
|
|
} |