mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-17 13:37:47 +03:00
17 lines
531 B
C#
17 lines
531 B
C#
using System.Threading;
|
|
using Robust.Shared.Prototypes;
|
|
using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype;
|
|
|
|
namespace Content.Server.Engineering.Components
|
|
{
|
|
[RegisterComponent]
|
|
public sealed partial class DisassembleOnAltVerbComponent : Component
|
|
{
|
|
[DataField("prototype", customTypeSerializer: typeof(PrototypeIdSerializer<EntityPrototype>))]
|
|
public string? Prototype { get; private set; }
|
|
|
|
[DataField("doAfter")]
|
|
public float DoAfterTime = 0;
|
|
}
|
|
}
|