14 lines
354 B
C#
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; }
|
|
}
|
|
}
|