Files
tbd-station-14/Content.Shared/Light/Components/IsRoofComponent.cs
2025-02-23 18:23:00 +11: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;
}