// SPDX-FileCopyrightText: 2023 DrSmugleaf // SPDX-FileCopyrightText: 2024 AJCM-git <60196617+AJCM-git@users.noreply.github.com> // SPDX-FileCopyrightText: 2024 Aiden // SPDX-FileCopyrightText: 2024 keronshb <54602815+keronshb@users.noreply.github.com> // SPDX-FileCopyrightText: 2024 metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> // SPDX-FileCopyrightText: 2024 metalgearsloth // SPDX-FileCopyrightText: 2024 username <113782077+whateverusername0@users.noreply.github.com> // SPDX-FileCopyrightText: 2024 whateverusername0 // SPDX-FileCopyrightText: 2025 Aiden <28298836+Aidenkrz@users.noreply.github.com> // // SPDX-License-Identifier: AGPL-3.0-or-later using Content.Shared.Actions; using Robust.Shared.Prototypes; namespace Content.Shared.Polymorph; public sealed partial class PolymorphActionEvent : InstantActionEvent { /// /// The polymorph proto id, containing all the information about /// the specific polymorph. /// [DataField] public ProtoId? ProtoId; public PolymorphActionEvent(ProtoId protoId) : this() { ProtoId = protoId; } } public sealed partial class RevertPolymorphActionEvent : InstantActionEvent { }