2024-08-29 20:23:33 +05:00
|
|
|
/*
|
|
|
|
|
* This file is sublicensed under MIT License
|
|
|
|
|
* https://github.com/space-wizards/space-station-14/blob/master/LICENSE.TXT
|
|
|
|
|
*/
|
|
|
|
|
|
2024-07-22 12:16:32 +03:00
|
|
|
using Content.Shared._CP14.Workbench.Prototypes;
|
|
|
|
|
using Content.Shared.DoAfter;
|
|
|
|
|
using Robust.Shared.Prototypes;
|
|
|
|
|
using Robust.Shared.Serialization;
|
|
|
|
|
|
|
|
|
|
namespace Content.Shared._CP14.Workbench;
|
|
|
|
|
|
|
|
|
|
public class SharedCP14WorkbenchSystem : EntitySystem
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Serializable, NetSerializable]
|
|
|
|
|
public sealed partial class CP14CraftDoAfterEvent : DoAfterEvent
|
|
|
|
|
{
|
|
|
|
|
[DataField(required: true)]
|
|
|
|
|
public ProtoId<CP14WorkbenchRecipePrototype> Recipe = default!;
|
|
|
|
|
|
|
|
|
|
public override DoAfterEvent Clone() => this;
|
|
|
|
|
}
|