Files
crystall-punk-14/Content.Shared/_CP14/Workbench/SharedCP14WorkbenchSystem.cs
Ed 925738afc2 Workbench update (#760)
* fix workbench icons

* workbench search

* fix 1

* UI finalize

* fix material localization

* restore shard sprite

* Update sewing_table.yml
2025-01-15 00:34:08 +03:00

25 lines
641 B
C#

/*
* This file is sublicensed under MIT License
* https://github.com/space-wizards/space-station-14/blob/master/LICENSE.TXT
*/
using Content.Shared._CP14.Workbench.Prototypes;
using Content.Shared.DoAfter;
using Robust.Shared.Prototypes;
using Robust.Shared.Serialization;
namespace Content.Shared._CP14.Workbench;
public abstract class SharedCP14WorkbenchSystem : EntitySystem
{
}
[Serializable, NetSerializable]
public sealed partial class CP14CraftDoAfterEvent : DoAfterEvent
{
[DataField(required: true)]
public ProtoId<CP14WorkbenchRecipePrototype> Recipe = default!;
public override DoAfterEvent Clone() => this;
}