- 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;
- }
|