2021-02-11 01:13:03 -08:00
|
|
|
|
using Robust.Shared.GameObjects;
|
2020-10-08 17:41:23 +02:00
|
|
|
|
using Robust.Shared.Map;
|
|
|
|
|
|
using Robust.Shared.Maths;
|
2021-02-11 01:13:03 -08:00
|
|
|
|
using Robust.Shared.Serialization;
|
2020-10-08 17:41:23 +02:00
|
|
|
|
|
|
|
|
|
|
namespace Content.Shared.Construction
|
|
|
|
|
|
{
|
|
|
|
|
|
public interface IConstructionCondition : IExposeData
|
|
|
|
|
|
{
|
|
|
|
|
|
bool Condition(IEntity user, EntityCoordinates location, Direction direction);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|