SetRoofComponent.cs 272 B

1234567891011
  1. namespace Content.Server.Light.Components;
  2. /// <summary>
  3. /// Applies the roof flag to this tile and deletes the entity.
  4. /// </summary>
  5. [RegisterComponent]
  6. public sealed partial class SetRoofComponent : Component
  7. {
  8. [DataField(required: true)]
  9. public bool Value;
  10. }