Files
tbd-station-14/Content.Shared/Construction/EntityInsertConstructionGraphStep.cs
2021-05-04 15:37:16 +02:00

15 lines
421 B
C#

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