12 lines
273 B
C#
12 lines
273 B
C#
using Robust.Shared.GameStates;
|
|
|
|
namespace Content.Shared.Eye.Blinding.Components;
|
|
|
|
/// <summary>
|
|
/// Component used for the blind status effect.
|
|
/// </summary>
|
|
[NetworkedComponent, RegisterComponent]
|
|
public sealed partial class TemporaryBlindnessComponent : Component
|
|
{
|
|
}
|