Files
tbd-station-14/Content.Shared/Construction/Steps/EntityInsertConstructionGraphStep.cs
2021-11-09 15:35:03 +01:00

14 lines
439 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(EntityUid uid, IEntityManager entityManager);
}
}