using Content.Shared.Actions; namespace Content.Shared.Polymorph; public sealed partial class PolymorphActionEvent : InstantActionEvent { /// /// The polymorph prototype containing all the information about /// the specific polymorph. /// public PolymorphPrototype Prototype = default!; public PolymorphActionEvent(PolymorphPrototype prototype) : this() { Prototype = prototype; } } public sealed partial class RevertPolymorphActionEvent : InstantActionEvent { }