Files
tbd-station-14/Content.Shared/Construction/Steps/EntityInsertConstructionGraphStep.cs
2021-06-09 22:19:39 +02:00

15 lines
427 B
C#

#nullable enable
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);
}
}