Files
tbd-station-14/Content.Shared/Construction/IGraphCondition.cs
2021-03-25 18:59:16 +01:00

14 lines
354 B
C#

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