namespace Content.Shared.Nutrition.Components; /// /// Component that denotes a piece of clothing that blocks the mouth or otherwise prevents eating & drinking. /// /// /// In the event that more head-wear & mask functionality is added (like identity systems, or raising/lowering of /// masks), then this component might become redundant. /// [RegisterComponent] public sealed partial class IngestionBlockerComponent : Component { /// /// Is this component currently blocking consumption. /// [ViewVariables(VVAccess.ReadWrite)] [DataField("enabled")] public bool Enabled { get; set; } = true; /// /// Goobstation /// Is this component always prevents smoke ingestion when enabled. /// [DataField] public bool BlockSmokeIngestion { get; set; } }