12 lines
272 B
C#
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;
|
|
}
|