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
{
}