* Cleanups PolymorphSystem * forgot this * Nah * Fix test --------- Co-authored-by: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com>
23 lines
532 B
C#
23 lines
532 B
C#
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!;
|
|
|
|
public PolymorphActionEvent(PolymorphPrototype prototype) : this()
|
|
{
|
|
Prototype = prototype;
|
|
}
|
|
}
|
|
|
|
public sealed partial class RevertPolymorphActionEvent : InstantActionEvent
|
|
{
|
|
|
|
}
|