Files
crystall-punk-14/Content.Server/Light/Components/SetRoofComponent.cs

12 lines
272 B
C#
Raw Normal View History

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