2022-02-11 19:01:37 -07:00
|
|
|
|
using Robust.Shared.GameStates;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Content.Shared.Administration;
|
|
|
|
|
|
|
2024-05-12 16:35:30 +02:00
|
|
|
|
[RegisterComponent, Access(typeof(SharedAdminFrozenSystem))]
|
|
|
|
|
|
[NetworkedComponent, AutoGenerateComponentState]
|
2023-08-22 18:14:33 -07:00
|
|
|
|
public sealed partial class AdminFrozenComponent : Component
|
2022-02-11 19:01:37 -07:00
|
|
|
|
{
|
2024-05-12 16:35:30 +02:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Whether the player is also muted.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[DataField, AutoNetworkedField]
|
|
|
|
|
|
public bool Muted;
|
2022-02-11 19:01:37 -07:00
|
|
|
|
}
|