ECS-ify Construction[Ghost]Component IExamine.

This commit is contained in:
Pieter-Jan Briers
2021-09-15 16:36:43 +02:00
parent 9733d35de7
commit ce6e37bdd8
12 changed files with 121 additions and 108 deletions

View File

@@ -1,12 +1,12 @@
using System.Threading.Tasks;
using Content.Shared.Examine;
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; }
bool DoExamine(ExaminedEvent examinedEvent) { return false; }
}
}