6
2026-01-24 12:49:55 +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;
}