// SPDX-FileCopyrightText: 2024 gluesniffler <159397573+gluesniffler@users.noreply.github.com> // SPDX-FileCopyrightText: 2025 Aiden <28298836+Aidenkrz@users.noreply.github.com> // // SPDX-License-Identifier: AGPL-3.0-or-later using Robust.Shared.GameStates; using Robust.Shared.Prototypes; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; namespace Content.Shared._Shitmed.GoliathTentacle; /// /// Component that grants the entity the ability to use goliath tentacles. /// [RegisterComponent, NetworkedComponent, AutoGenerateComponentState] public sealed partial class GoliathTentacleComponent : Component { [DataField(customTypeSerializer: typeof(PrototypeIdSerializer))] public string? Action = "ActionGoliathTentacleCrew"; [DataField, AutoNetworkedField] public EntityUid? ActionEntity; }