6
StarHorizon_Public/Content.Shared/_RMC14/Attachable/Events/AttachableAttachDoAfterEvent.cs
2026-01-24 12:49:55 +03:00

16 lines
360 B
C#

using Content.Shared.DoAfter;
using Robust.Shared.Serialization;
namespace Content.Shared._RMC14.Attachable.Events;
[Serializable, NetSerializable]
public sealed partial class AttachableAttachDoAfterEvent : SimpleDoAfterEvent
{
public readonly string SlotId;
public AttachableAttachDoAfterEvent(string slotId)
{
SlotId = slotId;
}
}