Refactor serialization copying to use source generators (#19412)
This commit is contained in:
@@ -1,9 +1,9 @@
|
||||
namespace Content.Shared.Construction.Steps
|
||||
{
|
||||
[ImplicitDataDefinitionForInheritors]
|
||||
public abstract class EntityInsertConstructionGraphStep : ConstructionGraphStep
|
||||
public abstract partial class EntityInsertConstructionGraphStep : ConstructionGraphStep
|
||||
{
|
||||
[DataField("store")] public string Store { get; } = string.Empty;
|
||||
[DataField("store")] public string Store { get; private set; } = string.Empty;
|
||||
|
||||
public abstract bool EntityValid(EntityUid uid, IEntityManager entityManager, IComponentFactory compFactory);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user