6
StarHorizon_Public/Content.Shared/_Crescent/ShipShields/ShipShieldVisualsComponent.cs
2025-11-03 10:15:18 +03:00

18 lines
462 B
C#

// SPDX-FileCopyrightText: 2025 ark1368
//
// SPDX-License-Identifier: AGPL-3.0-or-later
using Robust.Shared.GameStates;
namespace Content.Shared._Crescent.ShipShields;
[RegisterComponent, NetworkedComponent, AutoGenerateComponentState]
public sealed partial class ShipShieldVisualsComponent : Component
{
/// <summary>
/// The color of this shield.
/// </summary>
[DataField, AutoNetworkedField]
public Color ShieldColor = Color.White;
}