Files
tbd-station-14/Content.Shared/Construction/IGraphCondition.cs
2021-07-16 17:37:09 -07:00

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