6
2026-01-18 12:53:36 +03:00

12 lines
272 B
C#

namespace Content.Server.Light.Components;
/// <summary>
/// Applies the roof flag to this tile and deletes the entity.
/// </summary>
[RegisterComponent]
public sealed partial class SetRoofComponent : Component
{
[DataField(required: true)]
public bool Value;
}