Files
crystall-punk-14/Content.Shared/_CP14/Workbench/SharedCP14WorkbenchSystem.cs
2024-08-10 13:37:11 +03:00

29 lines
719 B
C#

/*
* All right reserved to Crystallpunk.
*
* BUT this file is sublicensed under CLA License for next projects:
* https://github.com/technologists-team/after-rain
* https://github.com/EscapeD-14/EscapeD-14
*
*/
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;
}