Files
OldThink/Content.Shared/_Amour/InteractionPanel/InteractionDoAfter.cs
2024-02-26 21:43:11 +03:00

16 lines
355 B
C#

using Content.Shared.DoAfter;
using Robust.Shared.Serialization;
namespace Content.Shared._Amour.InteractionPanel;
[Serializable, NetSerializable]
public sealed partial class PanelDoAfterEvent : SimpleDoAfterEvent
{
[DataField] public string Prototype;
public PanelDoAfterEvent(string prototype)
{
Prototype = prototype;
}
}