15 lines
454 B
C#
15 lines
454 B
C#
using Content.Server.Shuttles.Systems;
|
|
using Content.Shared.Shuttles.Components;
|
|
|
|
namespace Content.Server.Shuttles.Components;
|
|
|
|
[RegisterComponent, Access(typeof(ShuttleSystem))]
|
|
public sealed partial class IFFConsoleComponent : Component
|
|
{
|
|
/// <summary>
|
|
/// Flags that this console is allowed to set.
|
|
/// </summary>
|
|
[ViewVariables(VVAccess.ReadWrite), DataField("allowedFlags")]
|
|
public IFFFlags AllowedFlags = IFFFlags.HideLabel;
|
|
}
|