Delta-v/Content.Shared/_Shitmed/Surgery/SurgeryDoAfterEvent.cs

18 lines
460 B
C#

using Content.Shared.DoAfter;
using Robust.Shared.Prototypes;
using Robust.Shared.Serialization;
namespace Content.Shared._Shitmed.Medical.Surgery;
[Serializable, NetSerializable]
public sealed partial class SurgeryDoAfterEvent : SimpleDoAfterEvent
{
public readonly EntProtoId Surgery;
public readonly EntProtoId Step;
public SurgeryDoAfterEvent(EntProtoId surgery, EntProtoId step)
{
Surgery = surgery;
Step = step;
}
}