Files
tbd-station-14/Content.Shared/Administration/AdminFrozenComponent.cs
2025-08-25 15:49:27 +02:00

15 lines
385 B
C#

using Robust.Shared.GameStates;
namespace Content.Shared.Administration;
[RegisterComponent, Access(typeof(AdminFrozenSystem))]
[NetworkedComponent, AutoGenerateComponentState]
public sealed partial class AdminFrozenComponent : Component
{
/// <summary>
/// Whether the player is also muted.
/// </summary>
[DataField, AutoNetworkedField]
public bool Muted;
}