Files
wwdpublic/Content.Shared/Light/Components/IsRoofComponent.cs
metalgearsloth 12b19f9b54 Roof data rework (#35388)
(cherry picked from commit a4575511084c1472e677b2dfbd44360de90710ef)
2025-09-27 13:53:04 +03:00

14 lines
354 B
C#

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