// SPDX-FileCopyrightText: 2025 Aiden <28298836+Aidenkrz@users.noreply.github.com> // SPDX-FileCopyrightText: 2025 SX_7 // // SPDX-License-Identifier: AGPL-3.0-or-later namespace Content.Shared.Polymorph; /// /// Raised locally on an entity when it polymorphs into another entity /// /// EntityUid of the entity before the polymorph /// EntityUid of the entity after the polymorph /// Whether this polymorph event was a revert back to the original entity [ByRefEvent] public record struct PolymorphedEvent(EntityUid OldEntity, EntityUid NewEntity, bool IsRevert);