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);