using Robust.Shared.GameStates; namespace Content.Shared.Light.Components; /// /// Will draw shadows over tiles flagged as roof tiles on the attached map. /// [RegisterComponent, NetworkedComponent, AutoGenerateComponentState] public sealed partial class RoofComponent : Component { [DataField, AutoNetworkedField] public Color Color = Color.Black; }