14 lines
382 B
C#
14 lines
382 B
C#
using Robust.Shared.GameStates;
|
|
|
|
namespace Content.Shared.Light.Components;
|
|
|
|
/// <summary>
|
|
/// Will draw shadows over tiles flagged as roof tiles on the attached map.
|
|
/// </summary>
|
|
[RegisterComponent, NetworkedComponent, AutoGenerateComponentState]
|
|
public sealed partial class RoofComponent : Component
|
|
{
|
|
[DataField, AutoNetworkedField]
|
|
public Color Color = Color.Black;
|
|
}
|