using Robust.Shared.GameStates; namespace Content.Shared.Light.Components; /// /// Counts the tile this entity on as being rooved. /// [RegisterComponent, NetworkedComponent, AutoGenerateComponentState] public sealed partial class IsRoofComponent : Component { [DataField, AutoNetworkedField] public bool Enabled = true; }