Files
wwdpublic/Content.Shared/Polymorph/PolymorphActions.cs
Spatison 2a10c02eb5 No spead merge (#475)
* Revert "[GoobPort] WIZ REAL (#465)"

This reverts commit 091a8ff433.

* fix local
2025-04-26 10:50:32 +03:00

25 lines
588 B
C#

using Content.Shared.Actions;
using Robust.Shared.Prototypes;
namespace Content.Shared.Polymorph;
public sealed partial class PolymorphActionEvent : InstantActionEvent
{
/// <summary>
/// The polymorph proto id, containing all the information about
/// the specific polymorph.
/// </summary>
[DataField]
public ProtoId<PolymorphPrototype>? ProtoId;
public PolymorphActionEvent(ProtoId<PolymorphPrototype> protoId) : this()
{
ProtoId = protoId;
}
}
public sealed partial class RevertPolymorphActionEvent : InstantActionEvent
{
}