mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-17 13:37:47 +03:00
18 lines
417 B
C#
18 lines
417 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 sealed partial class RevertPolymorphActionEvent : InstantActionEvent
|
|
{
|
|
|
|
}
|