2024-02-23 22:10:38 +03:00
|
|
|
|
using Content.Shared.DoAfter;
|
|
|
|
|
|
using Robust.Shared.Serialization;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Content.Shared._White.Keyhole;
|
|
|
|
|
|
|
|
|
|
|
|
[Serializable, NetSerializable]
|
2024-03-24 18:43:51 +09:00
|
|
|
|
public sealed partial class KeyInsertDoAfterEvent : SimpleDoAfterEvent
|
|
|
|
|
|
{
|
|
|
|
|
|
public int FormId;
|
|
|
|
|
|
|
|
|
|
|
|
public KeyInsertDoAfterEvent(int formId)
|
|
|
|
|
|
{
|
|
|
|
|
|
FormId = formId;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2024-02-23 22:10:38 +03:00
|
|
|
|
|