Delta-v/Content.Shared/Construction/IGraphCondition.cs

13 lines
337 B
C#

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; }
}
}