IFFConsoleComponent.cs 454 B

1234567891011121314
  1. using Content.Server.Shuttles.Systems;
  2. using Content.Shared.Shuttles.Components;
  3. namespace Content.Server.Shuttles.Components;
  4. [RegisterComponent, Access(typeof(ShuttleSystem))]
  5. public sealed partial class IFFConsoleComponent : Component
  6. {
  7. /// <summary>
  8. /// Flags that this console is allowed to set.
  9. /// </summary>
  10. [ViewVariables(VVAccess.ReadWrite), DataField("allowedFlags")]
  11. public IFFFlags AllowedFlags = IFFFlags.HideLabel;
  12. }