Renames IEdgeCondition to IGraphCondition
This commit is contained in:
13
Content.Shared/Construction/IGraphCondition.cs
Normal file
13
Content.Shared/Construction/IGraphCondition.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
#nullable enable
|
||||
using System.Threading.Tasks;
|
||||
using Robust.Shared.GameObjects;
|
||||
using Robust.Shared.Utility;
|
||||
|
||||
namespace Content.Shared.Construction
|
||||
{
|
||||
public interface IGraphCondition
|
||||
{
|
||||
Task<bool> Condition(IEntity entity);
|
||||
bool DoExamine(IEntity entity, FormattedMessage message, bool inExamineRange) { return false; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user