2023-09-08 18:16:05 -07:00
|
|
|
|
using Content.Shared.Actions;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Content.Shared.Polymorph;
|
|
|
|
|
|
|
|
|
|
|
|
public sealed partial class PolymorphActionEvent : InstantActionEvent
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// The polymorph prototype containing all the information about
|
|
|
|
|
|
/// the specific polymorph.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public PolymorphPrototype Prototype = default!;
|
2024-02-01 08:17:02 -04:00
|
|
|
|
|
|
|
|
|
|
public PolymorphActionEvent(PolymorphPrototype prototype) : this()
|
|
|
|
|
|
{
|
|
|
|
|
|
Prototype = prototype;
|
|
|
|
|
|
}
|
2023-09-08 18:16:05 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public sealed partial class RevertPolymorphActionEvent : InstantActionEvent
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
}
|