Files
tbd-station-14/Content.Shared/Construction/Steps/EntityInsertConstructionGraphStep.cs
2021-07-16 17:37:09 -07:00

14 lines
410 B
C#

using Robust.Shared.GameObjects;
using Robust.Shared.Serialization.Manager.Attributes;
namespace Content.Shared.Construction.Steps
{
[ImplicitDataDefinitionForInheritors]
public abstract class EntityInsertConstructionGraphStep : ConstructionGraphStep
{
[DataField("store")] public string Store { get; } = string.Empty;
public abstract bool EntityValid(IEntity entity);
}
}