using Content.Shared.Examine; namespace Content.Shared.Construction.Steps { [Serializable] [ImplicitDataDefinitionForInheritors] public abstract partial class ConstructionGraphStep { [DataField("completed", serverOnly: true)] private IGraphAction[] _completed = Array.Empty(); [DataField("doAfter")] public float DoAfter { get; private set; } public IReadOnlyList Completed => _completed; public abstract void DoExamine(ExaminedEvent examinedEvent); public abstract ConstructionGuideEntry GenerateGuideEntry(); } }