// 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 { /// /// The color of this shield. /// [DataField, AutoNetworkedField] public Color ShieldColor = Color.White; }