Renames IEdgeCondition to IGraphCondition

This commit is contained in:
Vera Aguilera Puerto
2021-03-25 18:59:16 +01:00
parent 195feb70a7
commit d0abb85a6e
15 changed files with 18 additions and 18 deletions

View File

@@ -13,7 +13,7 @@ namespace Content.Server.Construction.Completions
{
[field: DataField("passUser")] public bool PassUser { get; } = false;
[field: DataField("condition", required:true)] public IEdgeCondition? Condition { get; } = null;
[field: DataField("condition", required:true)] public IGraphCondition? Condition { get; } = null;
[field: DataField("action", required:true)] public IGraphAction? Action { get; } = null;