6
StarHorizon_Public/Content.Shared/Construction/Steps/EntityInsertConstructionGraphStep.cs
2026-01-13 18:31:02 +02:00

11 lines
403 B
C#

namespace Content.Shared.Construction.Steps
{
[ImplicitDataDefinitionForInheritors]
public abstract partial class EntityInsertConstructionGraphStep : ConstructionGraphStep
{
[DataField("store")] public string Store { get; private set; } = string.Empty;
public abstract bool EntityValid(EntityUid uid, IEntityManager entityManager, IComponentFactory compFactory);
}
}