ConstructionGL2 Part 2: Better guided steps and recipes. (#5103)

This commit is contained in:
Vera Aguilera Puerto
2021-11-02 11:24:32 +01:00
committed by GitHub
parent 5be8271907
commit 5a5006e4cf
45 changed files with 725 additions and 210 deletions

View File

@@ -1,4 +1,5 @@
using Content.Shared.Examine;
using System.Collections.Generic;
using Content.Shared.Examine;
using Robust.Shared.GameObjects;
using Robust.Shared.Serialization.Manager.Attributes;
@@ -8,6 +9,7 @@ namespace Content.Shared.Construction
public interface IGraphCondition
{
bool Condition(EntityUid uid, IEntityManager entityManager);
bool DoExamine(ExaminedEvent args) { return false; }
bool DoExamine(ExaminedEvent args);
IEnumerable<ConstructionGuideEntry> GenerateGuideEntry();
}
}